30 lines
740 B
HTML
30 lines
740 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
<div class="grid-container">
|
|
|
|
{% regroup topic by topic_group as topic_list %}
|
|
|
|
{% for topic in topic_list %}
|
|
<div class="internheader">
|
|
{{ topic.grouper.title }}
|
|
</div>
|
|
|
|
<div class="grid-x grid-padding-x">
|
|
{% for tp in topic.list %}
|
|
<div class="cell large-2 medium-4 small-6">
|
|
<a href="{% url 'topic' tp.slug %}">
|
|
<div class="intern-topic">
|
|
<div class="intern-topic-text">
|
|
{{ tp.title }}
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
</div>
|
|
{% endblock %}
|