diff options
Diffstat (limited to 'cl-theme/templates/category.html')
-rw-r--r-- | cl-theme/templates/category.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cl-theme/templates/category.html b/cl-theme/templates/category.html new file mode 100644 index 0000000..02b5595 --- /dev/null +++ b/cl-theme/templates/category.html @@ -0,0 +1,21 @@ +{% extends "base.html" %} + +{% block head %} + <!-- Hola --> + {% block title %} + <title>{{ category.name }} - {{SITENAME}}</title> + {% endblock %} + {{ super() }} + <style> + .card-content-header { + margin-bottom: 2rem; + } + </style> +{% endblock %} + +{% block content %} + <div class="card-content-header"> + <h4 class="title is-4 has-text-centered">{{ category }}</h4> + </div> + {{ super() }} +{% endblock %} |