category.html 438 B

123456789101112131415161718192021
  1. {% extends "base.html" %}
  2. {% block head %}
  3. {% block title %}
  4. <title>{{ category.name }} - {{SITENAME}}</title>
  5. {% endblock %}
  6. {{ super() }}
  7. <style>
  8. .card-content-header {
  9. margin-bottom: 2rem;
  10. }
  11. </style>
  12. {% endblock %}
  13. {% block content %}
  14. <div class="card-content-header">
  15. <h4 class="title is-4 has-text-centered">{{ category }}</h4>
  16. </div>
  17. {{ super() }}
  18. {% endblock %}