base.tmpl 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ## -*- coding: utf-8 -*-
  2. <%namespace file="base_helper.tmpl" import="*"/>
  3. ${set_locale(lang)}
  4. <!DOCTYPE html>
  5. <html lang="${lang}">
  6. <head>
  7. ${html_head()}
  8. <%block name="extra_head">
  9. </%block>
  10. ${extra_head_data}
  11. </head>
  12. <body>
  13. <div class="container">
  14. <div class="header">
  15. <h1 id="blog-title">
  16. <a href="${abs_link('/')}" title="${blog_title}">${blog_title}</a>
  17. </h1>
  18. <ul class="nav">
  19. ${html_sidebar_links()}
  20. <li><a href="http://www.twitter.com/pleasantprog">@pleasantprog</a></li>
  21. <ul class="nav">
  22. <%block name="belowtitle">
  23. %if len(translations) > 1:
  24. <small>
  25. ${(messages("Also available in"))}:&nbsp;
  26. ${html_translations()}
  27. </small>
  28. %endif
  29. </%block>
  30. </div>
  31. <div class="content">
  32. <%block name="content"></%block>
  33. </div>
  34. <div class="footer"><small>${content_footer}</small></div>
  35. </div>
  36. %if add_this_buttons:
  37. <script type="text/javascript">var addthis_config={"ui_language":"${lang}"};</script>
  38. % endif
  39. ${analytics}
  40. </body>