{% extends "_layout.html" %}
{% block title %}Home{% endblock title %}
{% block meta_tags %}
{{ super() }}
{% if SITE_DESCRIPTION %}
{% endif %}
{% if SITE_LOGO %}
{% endif %}
{% endblock meta_tags %}
{% block content %}
{% for post in posts %}
{% with show_text=True %}
{% include "_list.html" %}
{% endwith %}
{% endfor %}
{% endblock content %}