microblog2/app/templates/archived_posts.html

15 lines
358 B
HTML

{% extends "base.html" %}
{% block app_content %}
{% if none_archived == false %}
<h1>{{ _('Your Archived Posts') }}</h1>
{% endif %}
<div class="row">
<div class="col-md-4">
{% for archive in archived %}
{% include '_archive.html' %}
{% endfor %}
</div>
</div>
{% endblock %}