sitolost/pelican-themes/pelican-bootstrap3bis/templates/tag.html

20 lines
669 B
HTML

{% if tag.name == 'podcast' %}
{% extends "article_list_podcast.html" %}
{% else %}
{% extends "article_list.html" %}
{% endif %}
{% block title %}{{ tag }} - {{ SITENAME }}{% endblock %}
{% block meta %}
<meta name="author" content="{{ AUTHOR }}" />
<meta name="keywords" content="{{ tag }}" />
{% endblock %}
{% block breadcrumbs %}
{% if DISPLAY_BREADCRUMBS %}
<ol class="breadcrumb">
<li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
<li><a href="{{ SITEURL }}/{{ TAGS_URL }}" title="Tags">Tags</a></li>
<li class="active">{{ tag }}</li>
</ol>
{% endif %}
{% endblock %}