-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_body_footer.inc.php
61 lines (53 loc) · 2 KB
/
_body_footer.inc.php
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
<?php
/**
* This is the BODY footer include template.
*
* For a quick explanation of b2evo 2.0 skins, please start here:
* {@link http://manual.b2evolution.net/Skins_2.0}
*
* This is meant to be included in a page template.
*
* @package evoskins
* @subpackage pixel
*/
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
?>
<!-- =================================== START OF FOOTER =================================== -->
<div id="footer">
<div id="footerleft">
<p class="baseline">A <a href="http://b2evolution.net/" title="b2evolution">b2evolution</a> port by <a href="http://Laibcoms.asia/" title="Snow World">JC John Sese Cuneta</a>.</p>
<p class="baseline">Theme: <a href="http://samk.ca/freebies/" title="Pixel Theme">pixel</a> and Sweet Icons by <a href="http://famfamfam.com/">famfamfam</a>.</p>
</div> <!-- end of id="footerleft" -->
<div id="footerright">
<p class="baseline">
<?php
// Display a link to contact the owner of this blog (if owner accepts messages):
$Blog->contact_link( array(
'before' => '',
'after' => ' • ',
'text' => T_('Contact'),
'title' => T_('Send a message to the owner of this blog...'),
) );
?>
Powered by <a href="http://b2evolution.net/" title="b2evolution home" target="_blank">b2evolution</a>
</p>
<p class="baseline">
Credits: <a href="http://skinfaktory.com/">skin makers</a>
<?php
// Display additional credits:
// If you can add your own credits without removing the defaults, you'll be very cool :))
// Please leave this at the bottom of the page to make sure your blog gets listed on b2evolution.net
credits( array(
'list_start' => ' • ',
'list_end' => ' ',
'separator' => ' • ',
'item_start' => ' ',
'item_end' => ' ',
) );
?>
</p>
</div> <!-- end of id="footerright" -->
<div class="cleared"></div>
</div> <!-- end of id="footer" -->
</div> <!-- end of id="wrapper" -->
</div> <!-- end of class="background-wrapper-picture" -->