{% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} {% block head %} {{ super() }} {% import 'translations.html' as translations with context %} {% if translations.entry_hreflang(article) %} {{ translations.entry_hreflang(article) }} {% endif %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block content %} {% if article.image is defined %} {% endif %}
{% if article.image is defined %}{% endif %}

 {{ article.title }}{% if article.description is defined %}
— {{ article.description }}{% endif %}

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

Estimated read time: {{article.readtime.minutes}} min.

{% endif %}

Created:

{% if article.modified %}

Modified:

{% 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 %}
{{ article.content }}
{% if article.share_post is defined and article.status != 'draft' %}

  {{ EMAIL }}

{% endif %} {% if article.prev_article_in_category or article.next_article_in_category or article.prev_article or article.next_article %} {% endif %}
{% endblock %}