templates/templates/pages/department/department-subject-course-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: 'Titulacións'
  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: 'Grao en Farmacia',
  21.             link: path('department-subject-list-no-filter-courses'),
  22.             text: '',
  23.           } %}
  24.           {% include 'molecules/banners/m.html.twig' with {
  25.             hasImage: false,
  26.             title: 'Grao en Psicoloxía',
  27.             link: path('department-subject-list-no-filter-courses'),
  28.             text: '',
  29.           } %}
  30.           {% include 'molecules/banners/m.html.twig' with {
  31.             hasImage: false,
  32.             title: 'Grao en Ciencias da Comunicación',
  33.             link: path('department-subject-list-no-filter-courses'),
  34.             text: '',
  35.           } %}
  36.           {% include 'molecules/banners/m.html.twig' with {
  37.             hasImage: false,
  38.             title: 'Grao en Bioloxía',
  39.             link: path('department-subject-list-no-filter-courses'),
  40.             text: '',
  41.           } %}
  42.           {% include 'molecules/banners/m.html.twig' with {
  43.             hasImage: false,
  44.             title: 'Grao en Psicoloxía',
  45.             link: path('department-subject-list-no-filter-courses'),
  46.             text: '',
  47.           } %}
  48.           {% include 'molecules/banners/m.html.twig' with {
  49.             hasImage: false,
  50.             title: 'Máster en Dereito',
  51.             link: path('department-subject-list-no-filter-courses'),
  52.             text: '',
  53.           } %}
  54.         </div>
  55.       </div>
  56.     </section>
  57. {% endblock %}
  58. {% block siteFooter %}
  59.     {% include 'organisms/site-footer.html.twig' %}
  60. {% endblock %}