aboutsummaryrefslogtreecommitdiffstats
path: root/cl-theme/templates/tag.html
diff options
context:
space:
mode:
Diffstat (limited to 'cl-theme/templates/tag.html')
-rw-r--r--cl-theme/templates/tag.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/cl-theme/templates/tag.html b/cl-theme/templates/tag.html
new file mode 100644
index 0000000..9ddf6b5
--- /dev/null
+++ b/cl-theme/templates/tag.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+{% block head %}
+ {% block title %}<title>#{{ tag.name }} - {{SITENAME}}</title>{% endblock title %}
+ {{ super() }}
+ <meta name="robots" content="noindex, follow" />
+ <style>
+ .card-content-header {
+ margin-bottom: 2rem;
+ }
+ </style>
+{% endblock %}
+{% block content %}
+ <div class="card-content-header">
+ <h4 class="title is-4 has-text-centered">#{{ tag }}</h4>
+ </div>
+ {{ super() }}
+{% endblock %}