/b2evolution/pixel/_body_footer.inc.php

http://laibcomsthemes.googlecode.com/ · PHP · 55 lines · 35 code · 4 blank · 16 comment · 1 complexity · eae83be14e852af8dc7b14b93928ad9f MD5 · raw file

  1. <?php
  2. /**
  3. * This is the BODY footer include template.
  4. *
  5. * For a quick explanation of b2evo 2.0 skins, please start here:
  6. * {@link http://manual.b2evolution.net/Skins_2.0}
  7. *
  8. * This is meant to be included in a page template.
  9. *
  10. * @package evoskins
  11. * @subpackage pixel
  12. */
  13. if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
  14. ?>
  15. <!-- =================================== START OF FOOTER =================================== -->
  16. <div id="footer">
  17. <div id="footerleft">
  18. <p class="baseline"><a href="http://laibcoms.asia/blog/labox/general5/theme-pixel" title="Pixel Theme">Pixel Theme</a> ported by <a href="http://Laibcoms.asia/" title="Snow World">JC John Sese Cuneta</a>.</p>
  19. <p class="baseline">Design by <a href="http://samk.ca/freebies/" title="Pixel Theme">samk.ca</a> and Sweet Icons by <a href="http://famfamfam.com/">famfamfam</a>.</p>
  20. </div> <!-- end of id="footerleft" -->
  21. <div id="footerright">
  22. <p class="baseline">
  23. <?php
  24. // Display footer text (text can be edited in Blog Settings):
  25. $Blog->footer_text( array(
  26. 'before' => '',
  27. 'after' => '<br/>',
  28. ) );
  29. // Display a link to contact the owner of this blog (if owner accepts messages):
  30. $Blog->contact_link( array(
  31. 'before' => '',
  32. 'after' => ' &bull; ',
  33. 'text' => T_('Contact'),
  34. 'title' => T_('Send a message to the owner of this blog...'),
  35. ) );
  36. // Display additional credits:
  37. // If you can add your own credits without removing the defaults, you'll be very cool :))
  38. // Please leave this at the bottom of the page to make sure your blog gets listed on b2evolution.net
  39. credits( array(
  40. 'list_start' => '',
  41. 'list_end' => '',
  42. 'separator' => ' &bull; ',
  43. 'item_start' => '',
  44. 'item_end' => '',
  45. ) );
  46. ?>
  47. </p>
  48. </div> <!-- end of id="footerright" -->
  49. <div class="cleared"></div>
  50. </div> <!-- end of id="footer" -->
  51. </div> <!-- end of id="wrapper" -->