{% extends 'base.html' %} {% load i18n %} {% load markup %} {% load comments %} {% block content %} {% if enable_promoted %} {% if promoted_posts %}

Promoted Posts

{% for p in promoted_posts %}

{{p.title}} (edit)

{{p.created_at}} | {% if p.tags.count < 1 %} No tags {% endif %} {% for t in p.tags.all %} {{t}} {% if not forloop.last %} , {% endif%} {%endfor%}

{{p.body|truncatechars:300|markdown}}

{% if not forloop.last %}
{% endif %} {% endfor %} {% endif %} {% endif %} {% if posts %}

{{section_title}}

{% for p in posts %}

{{p.title}}

{{p.created_at}} | {% if p.tags.count < 1 %} No tags {% endif %} {% for t in p.tags.all %} {{t}} {% if not forloop.last %} , {% endif%} {%endfor%}

{{p.body|truncatechars:300|markdown}}

{% if not forloop.last %}
{% endif %} {% endfor %} {% endif %} {% endblock %}