{% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} {% block title %}{{ SITENAME }} - {{ article.title|striptags }}{% endblock %} {% block head %} {{ super() }} {% import 'translations.html' as translations with context %} {% if translations.entry_hreflang(article) %} {{ translations.entry_hreflang(article) }} {% endif %} {% if article.description %} {% endif %} {% for tag in article.tags %} {% endfor %} {% if article.photo_image %} {% endif %} {% endblock %} {% block content %}

{{ article.title }}

{% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }} {% if article.photo_image %}{% endif %}


{{ article.content }}


{% if article.series %}

This post is part {{ article.series.index }} of the "{{ article.series.name }}" series:

    {% for part_article in article.series.all %}
  1. {{ part_article.title }}
  2. {% endfor %}
{% endif %}
Published: {% if article.modified %}
Updated: {% endif %} {% if article.authors %}
By {% for author in article.authors %} {{ author }} {% endfor %}

{% endif %} {% if article.category %} {% endif %} {% if article.tags %}
Tags: {% for tag in article.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endblock %}