templates/hymn_category/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Hymn Category List{% endblock %}
  3. {% block pageId %}hymn-category-list{% endblock %}
  4. {% block body %}
  5. <div class="card">
  6. <h2 class="page-title mb-0" title="Hymn Category Listing!">Hymn Categories</h2>
  7. <ul>
  8. {% for category in hymn_category|sort((a, b) => a.title <=> b.title) %}
  9. <li class="mb-2">
  10. <div class="col-4">
  11. <a title="{{ category.description }}" href="{{ path('hymn_category_show', {'slug': category.slug} ) }}">
  12. {{ category.title }}
  13. </a>
  14. </div>
  15. <div class="col-8 category-description">{{ category.description }}</div>
  16. </li>
  17. {% endfor %}
  18. </ul>
  19. </div>
  20. {% endblock %}