{% 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 %} {% for tag in article.tags %} {% endfor %} {% if article.summary %} {% else %} {% endif %} {% if article.photo_image %} {% else %} {% endif %} {% if SOCIAL_TWIITER %} {% endif %} {% if article.summary %} {% else %} {% endif %} {% if article.photo_image %} {% endif %} {% if article.photo_image %} {% endif %} {% if COMMENTS is sameas True %} {% endif %} {% endblock %} {% block somemorehead %} {% if article.specialcss %} {% endif %} {% endblock somemorehead %} {% block content %}

{{ article.title }}

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

By {% for author in article.authors %} {{ author }} {% endfor %}

{% endif %}

Published:

{% if article.modified %}

Updated:

{% endif %} {% if SOCIAL_SHARE is sameas true %} {% endif %}
{{ article.content }} {% if article.photo_gallery %}

{% for title, gallery in article.photo_gallery %}

{{ title }}

{% endfor %} {% endif %} {% 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 %}
{% if article.category %} {% endif %} {% if article.tags %}
Tags: {% for tag in article.tags %} {{ tag }} {% endfor %}
{% endif %}
{% if COMMENTS is sameas True %}

Comments

{{ COMMENT_EMBED }}
{% endif %} {% if MASTODON_COMMENTS is sameas True %}

Comment on Mastodon

{{ MASTODON_EMBED }}
{% endif %} {% if TWITTER_COMMENTS is sameas True %}

Comment on Twitter

To join a conversation on Twitter click here.

{% endif %}
{% if article.photo_image %} {% endif %} {% if ARTICLE_FOOTER == true %} {% include 'include/article_footer.html' %} {% endif %}
{% endblock %}