diff options
| author | 2013-11-20 16:58:50 -0300 | |
|---|---|---|
| committer | 2013-11-20 16:58:50 -0300 | |
| commit | ca94afc07df55cb7fc6fe3b4f3011877b7881195 (patch) | |
| tree | d81e1f275aa77545f33740723f307a83dde2e0b4 /nikola/data/themes/base/templates/base.tmpl | |
| parent | f794eee787e9cde54e6b8f53e45d69c9ddc9936a (diff) | |
Imported Upstream version 6.2.1upstream/6.2.1
Diffstat (limited to 'nikola/data/themes/base/templates/base.tmpl')
| -rw-r--r-- | nikola/data/themes/base/templates/base.tmpl | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/nikola/data/themes/base/templates/base.tmpl b/nikola/data/themes/base/templates/base.tmpl new file mode 100644 index 0000000..31c1747 --- /dev/null +++ b/nikola/data/themes/base/templates/base.tmpl @@ -0,0 +1,40 @@ +## -*- coding: utf-8 -*- +<%namespace name="base" file="base_helper.tmpl" import="*"/> +<%namespace name="annotations" file="annotation_helper.tmpl"/> +${set_locale(lang)} +<!DOCTYPE html> +<html +%if comment_system == 'facebook': +xmlns:fb="http://ogp.me/ns/fb#" +%endif +lang="${lang}"> +<head> + ${base.html_head()} + <%block name="extra_head"> + </%block> + ${extra_head_data} +</head> +<body> + <h1 id="blog-title"> + <a href="${abs_link('/')}" title="${blog_title}" rel="home">${blog_title}</a> + </h1> + <%block name="belowtitle"> + %if len(translations) > 1: + <small> + ${(messages("Also available in"))}: + ${base.html_translations()} + </small> + %endif + </%block> + <%block name="content"></%block> + <small>${content_footer}</small> + <!--Sidebar content--> + <ul class="unstyled"> + <li>${license} + ${base.html_social()} + ${base.html_navigation_links()} + <li>${search_form} + </ul> + ${base.late_load_js()} + ${social_buttons_code} +</body> |
