Advertisement
Guest User

Untitled

a guest
Mar 13th, 2012
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. PHP
  2. -----------------------------------------------------------------------------------------
  3. <?php
  4. // Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere!
  5. echo '
  6. <div id="footer_section">
  7. <div class="container">
  8. <dl class="footer-content">
  9. <dt>Legal Disclaimer</dt>
  10. <dd><p>&copy; 2010 Canonical Ltd. Ubuntu and Canonical are registered trademarks of Canonical Ltd.</p></dd>
  11. </dl>
  12. <dl class="footer-content">
  13. <dt>Content license</dt>
  14. <dd>
  15. <ul class="footer-links">
  16. <li class="footer-item"><a href="/test/?q=/node/100" class="footer-link">Images</a></li>
  17. <li class="footer-item"><a href="/test/?q=/node/101" class="footer-link">texts</a></li>
  18. </ul>
  19. </dd>
  20. </dl>
  21. <dl class="footer-content">
  22. <dt>More Ubuntu</dt>
  23. <dd>
  24. <ul class="footer-links">
  25. <li class="footer-item"><a href="http://ubuntu.com/getubuntu/download/" class="footer-link">Get Ubuntu</a></li>
  26. <li class="footer-item"><a href="http://brainstorm.ubuntu.com/" class="footer-link">Ubuntu Brainstorm</a></li>
  27. <li class="footer-item"><a href="http://ubuntuforums.org/" class="footer-link">Ubuntu Forums</a></li>
  28. <li class="footer-item"><a href="http://spreadubuntu.neomenlo.org/" class="footer-link">Spread Ubuntu</a></li>
  29. </ul>
  30. </dd>
  31. </dl>
  32. <dl class="footer-content">
  33. <dt>Forum Links</dt>
  34. <dd>
  35. <ul class="footer-links">
  36. <li class="footer-item"><a id="button_xhtml" href="http://validator.w3.org/check?uri=referer" target="_blank" class="footer-link new_win" title="', $txt['valid_xhtml'], '"><span>', $txt['xhtml'], '</span></a></li>
  37. ', !empty($modSettings['xmlnews_enable']) && (!empty($modSettings['allow_guestAccess']) || $context['user']['is_logged']) ? '<li class="footer-item"><a id="button_rss" href="' . $scripturl . '?action=.xml;type=rss" class="footer-link new_win"><span>' . $txt['rss'] . '</span></a></li>' : '', '
  38. <li class="footer-item last"><a id="button_wap2" href="', $scripturl , '?wap2" class="footer-link new_win"><span>', $txt['wap2'], '</span></a></li>
  39.  
  40. </ul>
  41. </dd>
  42. </dl>
  43.  
  44. <li class="copyright-theme">
  45. <a href="https://code.launchpad.net/ubuntu-nl-artwork/light-smf-theme" title="https://code.launchpad.net/ubuntu-nl-artwork/light-smf-theme" target="_blank"><b>Ubuntu Theme by Ronnie and Yordi</b></a>
  46. </li>
  47. <li class="copyright-smf">', theme_copyright(), '</li>
  48.  
  49. <li class="footer-bottom-hosting">
  50. <span class="hosting-text">Hosting</span>
  51. <a id="logo-hcc" title="logo hcc" href="http://www.hcc.nl/" alt="hcc! logo"></a>
  52. <a id="logo-bit" title="logo bit" href="http://www.bit.nl" alt="Bit logo"></a>
  53. </li>
  54. </ul>
  55. </details>
  56. <div style="clear:both;"></div>
  57. </div>
  58.  
  59.  
  60. </div>';
  61.  
  62. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement