aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/category.html
diff options
context:
space:
mode:
Diffstat (limited to 'crumbs/templates/category.html')
-rwxr-xr-xcrumbs/templates/category.html19
1 files changed, 7 insertions, 12 deletions
diff --git a/crumbs/templates/category.html b/crumbs/templates/category.html
index 92505d2..39ff421 100755
--- a/crumbs/templates/category.html
+++ b/crumbs/templates/category.html
@@ -1,16 +1,11 @@
-{% extends "base.html" %}
+{% extends "normal.html" %}
-{% block title %}{{ NEST_CATEGORY_HEAD_TITLE }} {{ category|capitalize }} - {{ super() }} CATEGORY {% endblock title %}
-{% block description %}{{ NEST_CATEGORY_HEAD_DESCRIPTION }} {{ category|capitalize }}{% endblock description %}
+{% block title %} {{ category }} {% endblock title %}
{% block content %}
-
-<h1>{{ category }}</h1>
-
-{% for article in articles %}
- {% with type='multi' %}
- {% include "components/card_content.html" %}
- {% endwith %}
-{% endfor %}
-
+ {% for article in articles %}
+ {% with type='multi' %}
+ {% include "components/card_content.html" %}
+ {% endwith %}
+ {% endfor %}
{% endblock content %}