cl/cl-theme/templates/category.html
2019-11-23 20:01:40 -05:00

21 lines
438 B
HTML

{% extends "base.html" %}
{% block head %}
{% 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 %}