9 lines
326 B
HTML
9 lines
326 B
HTML
{% extends "index.html" %}
|
|
{% block title %}{{ tag }} : {{ super() }}{% endblock %}
|
|
{% block feedlinks %}
|
|
{% if TAG_FEED_ATOM %}
|
|
<link rel="alternate" type="application/atom+xml" title="{{SITENAME}} {{tag}} ATOM Feed" href="{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM|format(tag.slug) }}">
|
|
{% endif %}
|
|
{{ super() }}
|
|
{% endblock %}
|