{# -*- coding: utf-8 -*- #} {% extends 'base.tmpl' %} {% import 'comments_helper.tmpl' as comments with context %} {% import 'ui_helper.tmpl' as ui with context %} {% import 'post_helper.tmpl' as post_helper with context %} {% block sourcelink %}{% endblock %} {% block content %} {{ ui.breadcrumbs(crumbs) }} {% if title %}

{{ title|e }}

{% endif %} {% if post %}

{{ post.text() }}

{% endif %} {% if folders %} {% if galleries_use_thumbnail %} {% for (folder, ftitle, fpost) in folders %}
{% if fpost and fpost.previewimage %} {{ ftitle|e }} {% else %}
{% endif %}

{{ ftitle|e }}

{% endfor %} {% else %} {% endif %} {% endif %} {% if photo_array %} {% endif %} {% if site_has_comments and enable_comments %} {{ comments.comment_form(None, permalink, title) }} {% endif %} {% endblock %} {% block extra_head %} {{ super() }} {% if translations|length > 1 %} {% for langname in translations.keys() %} {% if langname != lang %} {% endif %} {% endfor %} {% endif %} {% if post %} {{ post_helper.open_graph_metadata(post) }} {{ post_helper.twitter_card_information(post) }} {% endif %} {% endblock %} {% block extra_js %} {% endblock %}