templates/templates/pages/department/department-subject-area-list.html.twig line 1

Open in your IDE?
  1. {% extends "layouts/organization.html.twig" %}
  2. {% block bodyClass %}{% endblock %}
  3. {% block siteHeader %}
  4.   {% include 'organisms/department-header.html.twig' %}
  5. {% endblock %}
  6. {% block pageHeader %}
  7.     {% include 'molecules/page-header.html.twig' with {
  8.       breadcrumb: [
  9.           { path: path('department-subjects'), title: 'Docencia' }
  10.       ],
  11.       title: 'Áreas de coñecemento'
  12.     } %}
  13. {% endblock %}
  14. {% block pageContent %}
  15. <section class="org-tier is-minimal is-marginless-top">
  16.     <div class="tier-content">
  17.             <div class="org-modules-container has-banners">
  18.               {% include 'molecules/banners/m.html.twig' with {
  19.                 hasImage: false,
  20.                 title: 'Bioloxía celular',
  21.                 link: path('department-subject-list-no-filter'),
  22.                 text: ' ',
  23.               } %}
  24.               {% include 'molecules/banners/m.html.twig' with {
  25.                 hasImage: false,
  26.                 title: 'Ecoloxía',
  27.                 link: path('department-subject-list-no-filter'),
  28.                 text: ' ',
  29.               } %}
  30.               {% include 'molecules/banners/m.html.twig' with {
  31.                 hasImage: false,
  32.                 title: 'Fisioloxía vexetal',
  33.                 link: path('department-subject-list-no-filter'),
  34.                 text: ' ',
  35.               } %}
  36.             </div>
  37.       </div>
  38. </section>
  39. {% endblock %}
  40. {% block siteFooter %}
  41.     {% include 'organisms/site-footer.html.twig' %}
  42. {% endblock %}