blob: 9ddf6b5b8c3840ea589a0c1c2406ebf6cfc593d9 (
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() }}
<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 %}
|