{% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} {% block head -%} {{ super() -}} {% if article.summary %} {% endif %} {% endblock %} {% block title %}{{ article.title|striptags }}{% endblock %} {% block extra_head %} {% import 'translations.html' as translations with context %} {% if translations.entry_hreflang(article) %} {{ translations.entry_hreflang(article) }} {% endif %} {% endblock %} {% block content %} {{article.title}} {% if article.modified %} Last updated: {{ article.modified|strftime('%B %d, %Y') }} {% endif %} {% if article.toc %} Table of contents {{ article.toc }} {% endif %} {{ article.content }} {% include 'disqus_script.html' %} {% endblock %}