{# -*- coding: utf-8 -*- #} {% import 'arusahni_helper.tmpl' as arusahni with context %} {% import 'post_helper.tmpl' as helper with context %} {% import 'comments_helper.tmpl' as comments with context %} {% extends 'base.tmpl' %} {% block extra_head %} {{ super() }} {% if post.meta('keywords') %} {% endif %} {{ helper.open_graph_metadata(post) }} {{ helper.twitter_card_information(post) }} {{ helper.meta_translations(post) }} {% endblock %} {% block content %}
{{ arusahni.html_title() }}
{{ arusahni.html_translations(post) }} {{ arusahni.html_sourcelink() }}
{{ arusahni.html_tags(post) }}
{{ post.text() }}
{{ helper.html_pager(post) }} {% if not post.meta('nocomments') and site_has_comments %} {{ comments.comment_form(post.permalink(absolute=True), post.title(), post.base_path) }} {% endif %}
{% endblock %}