1
0
Files
sardines/templates/tag.html
2015-08-09 22:49:57 +02:00

21 lines
757 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "index.html" %}
{% block title %}{{ tag }} | {{ SITENAME }}{% endblock %}
{% block breadcrumb %}
<a href="/" class="item"><i class="home icon"></i></a>
<span class="active item" data-content="{{ tag }}"><i class="tag icon"></i> {{ tag }}</span>
{% endblock %}
{% block feeds %}
{% if TAG_FEED_ATOM %}{# TO DO : formatage ur categorie #}
<a href="{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM | format(tag) }}" type="application/atom+xml" rel="alternate" class="item">
<i class="tag icon"></i><i class="feed icon"></i>
</a>
{% elif TAG_FEED_RSS %}
<a href="{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS | format(tag) }}" type="application/rss+xml" rel="alternate" class="item">
<i class="tag icon"></i><i class="feed icon"></i>
</a>
{% endif %}
{% endblock %}