/b2evolution/emerald/_body_footer.inc.php

http://laibcomsthemes.googlecode.com/ · PHP · 46 lines · 30 code · 0 blank · 16 comment · 1 complexity · fecb3c84480b4e6f4beb67f80d692f72 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 emerald
  12. */
  13. if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
  14. ?>
  15. <div id="footer">
  16. <p>
  17. <a href="http://laibcoms.asia/blog/labox/general5/theme-emerald" title="Emerald Theme">Emerald Theme</a> ported by <a href="http://Laibcoms.asia/" title="Snow World">JC John Sese Cuneta</a>, design by <a href="http://www.freecsstemplates.org" title="Emerald">Free CSS Templates</a>.
  18. </p>
  19. <p>
  20. <?php
  21. // Display footer text (text can be edited in Blog Settings):
  22. $Blog->footer_text( array(
  23. 'before' => '',
  24. 'after' => '<br/>',
  25. ) );
  26. // Display a link to contact the owner of this blog (if owner accepts messages):
  27. $Blog->contact_link( array(
  28. 'before' => '',
  29. 'after' => ' &bull; ',
  30. 'text' => T_('Contact'),
  31. 'title' => T_('Send a message to the owner of this blog...'),
  32. ) );
  33. // Display additional credits:
  34. // If you can add your own credits without removing the defaults, you'll be very cool :))
  35. // Please leave this at the bottom of the page to make sure your blog gets listed on b2evolution.net
  36. credits( array(
  37. 'list_start' => '',
  38. 'list_end' => '',
  39. 'separator' => ' &bull; ',
  40. 'item_start' => '',
  41. 'item_end' => '',
  42. ) );
  43. ?>
  44. </p>
  45. </div> <!-- end of id="footer" -->
  46. </div> <!-- end of id="outer" -->