summaryrefslogtreecommitdiff
path: root/libretube-theme/templates/tag.html
blob: a6e0f4727c171a266c5a83011a6242ce62407496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}
{% block head %}
    {% block title %}<title>#{{ tag.name }} - {{SITENAME}}</title>{% endblock title %}
    {{ super() }}
    <meta name="robots" content="noindex, follow" />
{% endblock %}
{% block content %}
    <div class="col-md-12">
        <!-- title tag -->
        <h3 class="text-center">#{{ tag }}</h3>
        <!-- /title tag -->
    </div>
    {{ super() }}
{% endblock %}