{% extends 'base.html' %} {% block header %}

{% block title %}Welcome to the Dankventskalender 2020!{% endblock %}

Submit your meme for the next day now! Feel free to create and submit your own creations.

{% endblock %} {% block content %}
{% for post in posts %} {% if post['chosen'] == 1 %}

{{ post['title'] }}

{{ post['nickname'] }}

by {{ post['username'] }} on {{ post['created'].strftime('%Y-%m-%d') }}
{% if post['type'] == 'image' %} {% endif %} {% if post['type'] == 'video' %} {% endif %}

{{ post['body'] }}

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