categories.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {% extends "base.html" %}
  2. {% block head %}
  3. {% block title %}
  4. <title>{{ _('Lista de categorías de %(sitename)s', sitename=SITENAME)}}</title>
  5. {% endblock %}
  6. {{ super() }}
  7. <meta name="description" content="{{ _('Lista de categorías de %(sitename)s', sitename=SITENAME) }}"/>
  8. <meta name="keywords" content="{{ _('categorías') }}">
  9. <style>
  10. .card-content-header {
  11. margin-bottom: 2rem;
  12. }
  13. </style>
  14. {% endblock %}
  15. {% block content %}
  16. <div class="container">
  17. <!-- start of posts -->
  18. <div class="columns is-multiline is-centered">
  19. <!-- start of post -->
  20. <article class="column is-7">
  21. <div class="card">
  22. <!-- post header -->
  23. <div class="card-content-header">
  24. <h2 class="title is-4 has-text-centered">{{ _('Lista de categorías') }}</h2>
  25. </div>
  26. <!-- end of post header -->
  27. <!-- post content -->
  28. <div class="card-content">
  29. <div class="content">
  30. <div class="card-inner-wrapper">
  31. <!-- post text -->
  32. <div class="card-content-text has-text-justified">
  33. <ul>
  34. {% for category, articles in categories %}
  35. <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
  36. {% endfor %}
  37. </ul>
  38. </div>
  39. <!-- end of post text -->
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. <!-- end of post content -->
  45. </article>
  46. </div>
  47. </div>
  48. {% endblock %}