{# -*- coding: utf-8 -*- #} {% import 'annotation_helper.tmpl' as notes with context %} {% macro html_headstart() %} {% if description %} {% endif %} {{ title|e }} | {{ blog_title|e }} {{ html_stylesheets() }} {{ html_feedlinks() }} {% if permalink %} {% endif %} {% if favicons %} {% for name, file, size in favicons %} {% endfor %} {% endif %} {% if comment_system == 'facebook' %} {% endif %} {% if prevlink %} {% endif %} {% if nextlink %} {% endif %} {{ mathjax_config }} {% if use_cdn %} {% else %} {% endif %} {{ extra_head_data }} {% endmacro %} {% macro late_load_js() %} {% if use_bundles %} {% if use_cdn %} {% else %} {% endif %} {% else %} {% if use_cdn %} {% else %} {% endif %} {% endif %} {% if colorbox_locales[lang] %} {% endif %} {{ social_buttons_code }} {% endmacro %} {% macro html_stylesheets() %} {% if use_bundles %} {% if use_cdn %} {% else %} {% endif %} {% else %} {% if use_cdn %} {% else %} {% endif %} {% if has_custom_css %} {% endif %} {% endif %} {% if annotations and post and not post.meta('noannotations') %} {{ notes.css() }} {% elif not annotations and post and post.meta('annotations') %} {{ notes.css() }} {% endif %} {% endmacro %} {% macro html_navigation_links() %} {% for url, text in navigation_links[lang] %} {% if isinstance(url, tuple) %}
  • {{ text }} {% else %}
  • {{ text }} {% endif %} {% endif %} {% endfor %} {% endmacro %} {% macro html_feedlinks() %} {% if rss_link %} {{ rss_link }} {% elif generate_rss %} {% if translations|length > 1 %} {% for language in translations %} {% endfor %} {% else %} {% endif %} {% endif %} {% endmacro %} {% macro html_translations() %} {% for langname in translations.keys() %} {% if langname != lang %}
  • {{ messages("LANGUAGE", langname) }}
  • {% endif %} {% endfor %} {% endmacro %}