crunk-columns/templates/singlefeed.html
2023-06-03 18:12:55 +02:00

11 lines
196 B
HTML

{% extends "base.html" %}
{% block main %}
{% for feedtitle, text in feed.items() %}
<div class="event">
<h2>{{ feedtitle }}</h2>
{{ text[0]|safe }}
</div>
{% endfor%}
{% endblock %}