{% extends "base.html" %} {% load i18n comments %} {% block title %}{{ article.headline }}{% endblock %} {% block description %}{{article.content|striptags|truncatewords:16}}{% endblock %} {% block extra_head %} {% endblock %} {% block opengraph %} {% endblock %} {% block itemscope %}itemscope itemtype="http://schema.org/Article"{% endblock %} {% block content %}

{{article.headline}}

{{ article.content }}
{% endblock %} {% block sidebar %} {{article.category.name}}

 

Google+ Twitter Facebook

{% endblock %} {% block comments%} {% render_comment_list for article %} {% render_comment_form for article %} {% endblock %} {% block buttonbar %} {% if perms.content.change_article %} {% trans "Edit Article" %} {% endif %} {% endblock %}