12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- ## -*- coding: utf-8 -*-
- <%namespace file="base_helper.tmpl" import="*"/>
- ${set_locale(lang)}
- <!DOCTYPE html>
- <html lang="${lang}">
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- ${html_head()}
- <%block name="extra_head">
- </%block>
- ${extra_head_data}
- </head>
- <body>
- <div class="container">
- <div class="header clearfix">
- <h1 id="blog-title">
- <a href="${abs_link('/')}" title="${blog_title}">${blog_title}</a>
- </h1>
- <ul class="nav">
- ${html_sidebar_links()}
- <li><a href="http://www.twitter.com/pleasantprog">@pleasantprog</a></li>
- <ul class="nav">
- <%block name="belowtitle">
- %if len(translations) > 1:
- <small>
- ${(messages("Also available in"))}:
- ${html_translations()}
- </small>
- %endif
- </%block>
- </div>
- <div class="content">
- <%block name="content"></%block>
- </div>
- <div class="footer"><small>${content_footer}</small></div>
- </div>
- %if add_this_buttons:
- <script type="text/javascript">var addthis_config={"ui_language":"${lang}"};</script>
- % endif
- ${analytics}
- </body>
|