summaryrefslogtreecommitdiffstats
path: root/themes/lv2/templates/tag.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/lv2/templates/tag.html')
-rw-r--r--themes/lv2/templates/tag.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/themes/lv2/templates/tag.html b/themes/lv2/templates/tag.html
new file mode 100644
index 0000000..aa9edc8
--- /dev/null
+++ b/themes/lv2/templates/tag.html
@@ -0,0 +1,15 @@
+{% extends "article_list.html" %}
+{% 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 %}