You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
368 B
16 lines
368 B
{% extends "base.html" %}
|
|
{% block main %}
|
|
<div class="crunkcolumns">
|
|
{% for column in columns %}
|
|
<div class="feed">
|
|
<h1>{{ column.title }}</h1>
|
|
{% for feedtitle, text in column.entries.items() %}
|
|
<div class="feeditem">
|
|
<h2>{{ feedtitle }}</h2>
|
|
{{ text[0]|safe }}
|
|
</div>
|
|
{% endfor%}
|
|
</div>
|
|
{% endfor%}
|
|
</div>
|
|
{% endblock %}
|
|
|