{# -*- coding: utf-8 -*- #} {% import 'base_helper.tmpl' as base with context %} {% macro html_header() %} {{ template_hooks['page_header']() }} {% block extra_header %}{% endblock %} {% endmacro %} {% macro html_site_title() %}

{% if logo_url %} {% endif %} {% if show_blog_title %} {{ blog_title|e }} {% endif %}

{% endmacro %} {% macro html_navigation_links() %} {% endmacro %} {% macro html_navigation_links_entries(navigation_links_source) %} {% for url, text in navigation_links_source[lang] %} {% if isinstance(url, tuple) %}
  • {{ text }} {% else %} {% if rel_link(permalink, url) == "#" %}
  • {{ text }} {{ messages("(active)", lang) }}
  • {% else %}
  • {{ text }}
  • {% endif %} {% endif %} {% endfor %} {% endmacro %} {% macro html_translation_header() %} {% if translations|length > 1 %}

    {{ messages("Languages:") }}

    {{ base.html_translations() }}
    {% endif %} {% endmacro %}