blob: cfd4d2da170d27aa67f33b04d2bc5f2817007fd5 [file] [log] [blame]
Giulio Fidente44ccac72013-03-21 18:51:03 +01001{% extends "index.html" %}
pR0Ps6bf52272013-12-11 13:25:27 -05002{% block title %}Category: {{ category }} | {{ SITENAME }}{% endblock %}
Giulio Fidenteda4d95b2013-04-29 15:59:35 +02003
pR0Psd44c2f92014-12-18 01:49:27 -05004{% block description %}Posts in the {{ category }} section of this site{% endblock %}
5
Giulio Fidente8305e742013-03-22 23:17:45 +01006{% block head %}
7{% if CATEGORY_FEED_ATOM %}
Giulio Fidentedd455ab2019-01-02 14:08:45 +01008<link href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_ATOM|replace("{slug}", category.slug) }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} {{ category }} Category Atom Feed" />
Giulio Fidente8305e742013-03-22 23:17:45 +01009{% endif %}
10{% if CATEGORY_FEED_RSS %}
Giulio Fidentedd455ab2019-01-02 14:08:45 +010011<link href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_RSS|replace("{slug}", category.slug) }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} {{ category }} Category RSS Feed" />
Giulio Fidente8305e742013-03-22 23:17:45 +010012{% endif %}
13{% endblock %}
Giulio Fidenteda4d95b2013-04-29 15:59:35 +020014
pR0Ps09af9c42013-12-06 04:51:29 -050015{% block subheader %}
Giulio Fidenteda4d95b2013-04-29 15:59:35 +020016<p>Category: {{ category }}
Giulio Fidente824c5952013-04-09 02:33:10 +020017{% if CATEGORY_FEED_ATOM %}
Giulio Fidentedd455ab2019-01-02 14:08:45 +010018&#124; <a href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_ATOM|replace("{slug}", category.slug) }}">Atom Feed</a>
Giulio Fidente824c5952013-04-09 02:33:10 +020019{% endif %}
20{% if CATEGORY_FEED_RSS %}
Giulio Fidentedd455ab2019-01-02 14:08:45 +010021&#124; <a href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_RSS|replace("{slug}", category.slug) }}">RSS Feed</a>
Giulio Fidenteda4d95b2013-04-29 15:59:35 +020022{% endif %}</p>
Giulio Fidente6e18a6a2013-03-22 23:29:41 +010023{% endblock %}