1
0
Files
sardines/templates/category.html
Jérémie Ducastel 90d68a9a4b fixes + readme
* correctif liens pocket
* nommage des endblocks
* réadmet + ajout capture
2015-08-10 13:37:36 +02:00

21 lines
834 B
HTML
Raw Permalink 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 %}{{ category }} | {{ SITENAME }}{% endblock title %}
{% block breadcrumb %}
<a href="/" class="item"><i class="home icon"></i></a>
<span class="active item" data-content="{{ category }}"><i class="folder icon"></i> {{ category }}</span>
{% endblock breadcrumb %}
{% block feeds %}
{% if CATEGORY_FEED_ATOM %}{# TO DO : formatage ur categorie #}
<a href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_ATOM | format(category) }}" type="application/atom+xml" rel="alternate" class="item">
<i class="folder icon"></i><i class="feed icon"></i>
</a>
{% elif CATEGORY_FEED_RSS %}
<a href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_RSS | format(category) }}" type="application/rss+xml" rel="alternate" class="item">
<i class="folder icon"></i><i class="feed icon"></i>
</a>
{% endif %}
{% endblock feeds %}