-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpixels.php
More file actions
125 lines (92 loc) · 4.12 KB
/
pixels.php
File metadata and controls
125 lines (92 loc) · 4.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
/*================================================================+\
|| # PHPRetro - An extendable virtual hotel site and management
|+==================================================================
|| # Copyright (C) 2009 Yifan Lu. All rights reserved.
|| # http://www.yifanlu.com
|| # Parts Copyright (C) 2009 Meth0d. All rights reserved.
|| # http://www.meth0d.org
|| # All images, scripts, and layouts
|| # Copyright (C) 2009 Sulake Ltd. All rights reserved.
|+==================================================================
|| # PHPRetro is provided "as is" and comes without
|| # warrenty of any kind. PHPRetro is free software!
|| # License: GNU Public License 3.0
|| # http://opensource.org/licenses/gpl-license.php
\+================================================================*/
$page['allow_guests'] = true;
require_once('./includes/core.php');
require_once('./includes/session.php');
$lang->addLocale("credits.pixels");
$page['id'] = "pixels";
$page['name'] = $lang->loc['pagename.pixels'];
$page['bodyid'] = "home";
$page['cat'] = "credits";
require_once('./templates/community_header.php');
?>
<div id="container">
<div id="content" style="position: relative" class="clearfix">
<div id="column1" class="column">
<div class="habblet-container ">
<div class="cbb clearfix pixelblue ">
<h2 class="title"><?php echo $lang->loc['learn.about.pixels']; ?>
</h2>
<div class="pixels-infobox-container">
<div class="pixels-infobox-text">
<h3><?php echo $lang->loc['you.can.earn.pixels']; ?>:</h3>
<ul>
<li><p><?php echo $lang->loc['no.way.for.pixels']; ?></p></li>
</ul>
<p><?php echo $lang->loc['shop.pixels']; ?></p>
<p><a href="<?php echo PATH; ?>/help" target="_blank"><?php echo $lang->loc['faq']; ?></a></p>
</div>
</div>
</div>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
</div>
<div id="column2" class="column">
<div class="habblet-container ">
<div class="cbb clearfix pixelgreen ">
<h2 class="title"><?php echo $lang->loc['rent.some.stuff']; ?>
</h2>
<div id="pixels-info" class="box-content pixels-info">
<div class="pixels-info-text clearfix">
<img class="pixels-image" src="<?php echo PATH; ?>/web-gallery/v2/images/activitypoints/pixelpage_effectmachine.png" alt=""/>
<p class="pixels-text"><?php echo $lang->loc['rent.stuff.desc']; ?></p>
</div>
</div>
</div>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
<div class="habblet-container ">
<div class="cbb clearfix pixellightblue ">
<h2 class="title"><?php echo $lang->loc['effects']; ?>
</h2>
<div id="pixels-info" class="box-content pixels-info">
<div class="pixels-info-text clearfix">
<img class="pixels-image" src="<?php echo PATH; ?>/web-gallery/v2/images/activitypoints/pixelpage_personaleffect.png" alt=""/>
<p class="pixels-text"><?php echo $lang->loc['effects.desc']; ?></p>
</div>
</div>
</div>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
<div class="habblet-container ">
<div class="cbb clearfix pixeldarkblue ">
<h2 class="title"><?php echo $lang->loc['offers']; ?>
</h2>
<div id="pixels-info" class="box-content pixels-info">
<div class="pixels-info-text clearfix">
<img class="pixels-image" src="<?php echo PATH; ?>/web-gallery/v2/images/activitypoints/pixelpage_discounts.png" alt=""/>
<p class="pixels-text"><?php echo $lang->loc['offers.desc']; ?></p>
</div>
</div>
</div>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
</div>
<script type="text/javascript">
HabboView.run();
</script>
<?php require_once('./templates/community_footer.php'); ?>