{% extends "base.html" %} {% block meta %} {% include "partial/og_article.html" %} {% endblock %} {% block title %} – {{ article.title|striptags }}{% endblock %} {% block content %}

{{ article.title }}

{% autoescape false %} {{ _('Posted on %(when)s in %(category)s', when=article.locale_date, category='%s' % (SITEURL, article.category.url, article.category)) }} {% endautoescape %}

{{ article.content }}

{% if article.tags %} {% for tag in article.tags %} {{ tag }} {% endfor %} {% endif %}

{% if ADD_THIS_ID %}

{{ _('Like this article? Share it with your friends!') }}

{% endif %} {% if article.related_posts %} {% endif %} {% include "partial/disqus.html" %}
{% endblock %} {% block additional_js %} {% include "partial/jsonld_article.html" %} {% endblock %}