{% extends "base.html" %} {% block title -%} {{ article.title|striptags|breaking_spaces }} — {{ super() }} {%- endblock %} {% block html_lang %}{{ article.lang }}{% endblock %} {% block meta %} {% if article.author %} {% else %} {% endif %} {% if article.tags %} {% endif %} {% if article.summary %} {% endif %} {% endblock %} {# {% block opengraph %} {% if OPEN_GRAPH_FB_APP_ID %} {% if article.category %} {% endif %} {% for tag in article.tags %} {% endfor %} {% if article.author %} {% elif AUTHOR %} {% endif %} {% if article.og_image %} {% elif OPEN_GRAPH_IMAGE %} {% endif %} {% endif %} {% endblock %} #} {% block canonical_rel %} {% endblock %} {% block breadcrumbs %} {% if DISPLAY_BREADCRUMBS %} {% endif %} {% endblock %} {% block content %}
{% if article.image %} {{ article.title|striptags }} {% elif CATEGORY_IMAGES and article.category in CATEGORY_IMAGES %} {{ article.category|striptags }} {% endif %} {% if not article.micro %}

{{ article.title|replace(' ', ' ') }}

{% endif %}
{% include "includes/article_info.html" %}
{{ article.content }}
{% include 'includes/neighbors.html' %} {% include 'includes/related-posts.html' %} {% include 'includes/addthis.html' %} {% include 'includes/comments.html' %}
{% endblock %}