{% extends "base.html" %} {% block topbar %}

{{ header_title }}

{{ header_description }}

{% endblock %} {% block content %}
{% for post in posts %}
{% if post.photo %} {% endif %}

{{ post.title }}

{% if post.forward %}

{{ post.forward.title }} {{ post.forward.date }}

{% if post.text %}

{{ post.text | safe }}

{% endif %} {% if post.path %}

🗂 File: {{ post.path }}

{% endif %}
{% else %} {% if post.text %}

{{ post.text | safe }}

{% endif %} {% if post.path %}

🗂 File: {{ post.path }}

{% endif %} {% endif %}
{% endfor %}
{% endblock %}