aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/category.html
blob: f741c6e7e2b50b7186c9527d82acba384ce29a68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}

{% block title %}{{ NEST_CATEGORY_HEAD_TITLE }} {{ category|capitalize }} - {{ super() }} CATEGORY {% endblock title %}
{% block description %}{{ NEST_CATEGORY_HEAD_DESCRIPTION }} {{ category|capitalize }}{% endblock description %}

{% block content %}

<h1>{{ category }}</h1>

{% for article in articles %}
    {% with type='multi' %}
    {% include "card_content.html" %}
    {% endwith %}
{% endfor %}

{% endblock content %}