crunk-columns is a PESOS style website maker
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.

28 lines
762 B

1 year ago
{% extends "base.html" %}
{% block main %}
{% block custombefore %}
{% include "custombefore.html" %}
{% endblock %}
<main class="crunkcolumns">
{% block customcolumn %}
{% include "customcolumn.html" %}
{% endblock %}
{% for column in columns %}
<div class="feed {{ column.title.replace(' ', '') }}">
1 year ago
<h1>{{ column.title }}</h1>
7 months ago
<div class="feeditems">
1 year ago
{% for feedtitle, text in column.entries.items() %}
<div class="feeditem" id="{{ column.title.replace(' ', '') + '_' + feedtitle.replace(' ', '') }}">
1 year ago
<h2>{{ feedtitle }}</h2>
<div>{{ text[0]|safe }}</div>
1 year ago
</div>
{% endfor%}
7 months ago
</div>
1 year ago
</div>
{% endfor%}
</main>
{% block customafter %}
{% include "customafter.html" %}
{% endblock %}
1 year ago
{% endblock %}