aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/category.html
blob: 39ff421874623be3cbafd87ba48e3c5da8192a9d (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "normal.html" %}

{% block title %} {{ category }} {% endblock title %}

{% block content %}
    {% for article in articles %}
        {% with type='multi' %}
        {% include "components/card_content.html" %}
        {% endwith %}
    {% endfor %}
{% endblock content %}