aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/category.html
blob: 92505d23abb4e3214f90074170b505ef23dc7f68 (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 "components/card_content.html" %}
    {% endwith %}
{% endfor %}

{% endblock content %}