blob: 885c3f94ba3440bd4a5f8c51b4a41273020f2c5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends "base.html" %}
{% block head %}
{% block title %}<title>#{{ tag.name }} - {{SITENAME}}</title>{% endblock title %}
{{ super() }}
{{ super() }}
<meta name="robots" content="noindex, follow" />
{% endblock %}
{% block content %}
<!-- col 12 -->
<div class="col-md-12">
<!-- title tag -->
<h3 class="text-center">#{{ tag }}</h3>
<!-- title tag -->
{{ super() }}
</div>
<!-- End col 12 -->
{% endblock %}
|