{% extends "base.html" %} {% block title %}{{ article.title }}{% endblock %} {# #} {% if article.cover %} {% if article.cover|lower|truncate(4, True, '') == "http" %} {% set selected_cover = article.cover %} {% else %} {% set selected_cover = SITEURL+"/"+article.cover %} {% endif %} {% elif article.og_image %} {% if article.og_image|lower|truncate(4, True, '') == "http" %} {% set selected_cover = article.og_image %} {% else %} {% set selected_cover = SITEURL+"/"+article.og_image %} {% endif %} {% elif article.color %} {% set selected_color = article.color %} {% elif HEADER_COVER %} {% if HEADER_COVER|lower|truncate(4, True, '') == "http" %} {% set selected_cover = HEADER_COVER %} {% else %} {% set selected_cover = SITEURL+"/"+HEADER_COVER %} {% endif %} {% elif HEADER_COLOR %} {% set selected_color = HEADER_COLOR %} {% endif %} {% block head %} {{ super() }} {% for keyword in article.keywords %} {% endfor %} {% if description %} {% elif article.headline %} {% elif article.summary %} {% endif %} {% for author in article.authors %} {% endfor %} {% for tag in article.tags %} {% endfor %} {% include 'partials/og_article.html' %} {% include 'partials/jsonld_article.html' %} {% endblock %} {% block header %}

{{ article.title }}

{% if article.headline %} {{ article.headline }} {% endif %} {% if article.modified %} {% endif %} {% if selected_cover %}
{% elif selected_color %}
{% else %}
{% endif %}
{% endblock header %} {% block content %}
{{article.content}}
{% if DISQUS_SITENAME and SITEURL and article.status != "draft" %}
{% if article.disqus_identifier %} Show Comments {% else %} Show Comments {% endif %}
{% endif %}
{% endblock content %}