{% extends "base.html" %} {% block meta %} {% include "include/og_article.html" %} {% endblock meta%} {% block title %} {{ article.title|striptags|escape }} – {{ SITENAME }} {% endblock title %} {% block header %}

{{ article.title }}

{{ article.summary }}

{{ article.author }} {% if article.modified %} {{ article.locale_modified }} {% else %} {{ article.locale_date }} {% endif %} {% if article.stats %} {{ article.stats['read_mins'] }} mins {% elif article.readtime %} {{ article.readtime }} {% endif %}
{{ article.category|lower }} {% for tag in article.tags %} {{ tag|lower }} {% endfor %}
{% endblock header %} {% block content %} {% if article.toc == 'show' %}
{% block add_this %} {# remove ADD_THIS in content, move to inner column #} {% endblock add_this %} {% if ADD_THIS_ID and (page_name or page or article) %}
{% endif %} {{ article.content }} {% if article.prev_article or article.next_article %}
Read more:
{% include "include/neighbors.html" %} {% endif %} {% if GOOGLE_ADSENSE and GOOGLE_ADSENSE.ads.sidebar %}
{% endif %}
{% if SHARE_POST and article.share_post and article.status != 'draft' %}

Share on:

{% endif %} {% if GOOGLE_ADSENSE and GOOGLE_ADSENSE.ads.sidebar %}
{% endif %}
{% else %} {% if ADD_THIS_ID and (page_name or page or article) %}
{% endif %} {% if SHARE_POST and article.share_post and article.status != 'draft' %}
Share on:
{% endif %}
{{ article.content }}
{% if article.prev_article or article.next_article %}
Read more:
{% include "include/neighbors.html" %} {% endif %} {% if GOOGLE_ADSENSE and GOOGLE_ADSENSE.ads.article %} {% endif %} {% endif %} {% if article.related_posts %}
Related posts:
{% endif %} {% if DISQUS_SITENAME %}
{% include "include/disqus.html" %} {% endif %} {% endblock content %}