templates/templates/pages/center/center-schedule.html.twig line 1

Open in your IDE?
  1. {% extends "layouts/organization.html.twig" %}
  2. {% block bodyClass %}{% endblock %}
  3. {% block siteHeader %}
  4.   {% include 'organisms/organization-header.html.twig' %}
  5. {% endblock %}
  6. {% block pageHeader %}
  7.     {% include 'molecules/page-header.html.twig' with {
  8.         title: 'Horarios'
  9.     } %}
  10. {% endblock %}
  11. {% block pageContent %}
  12. <section class="org-tier is-marginless-top">
  13.   <div class="org-modules-container has-banners">
  14.   {% include 'molecules/banners/l.html.twig' with {
  15.        title: 'O teu horario',
  16.        link: path('center-schedule-student'),
  17.   } %}
  18.   {% include 'molecules/banners/m.html.twig' with {
  19.        title: 'Horarios de cursos',
  20.        text: '',
  21.        link: path('center-schedule-course-list'),
  22.   } %}
  23.   {% include 'molecules/banners/m.html.twig' with {
  24.        title: 'Horarios de materias',
  25.        text: '',
  26.        link: path('center-schedule-subject-list'),
  27.   } %}
  28.   {% include 'molecules/banners/m.html.twig' with {
  29.        title: 'Horarios de aulas',
  30.        text: '',
  31.        link: path('center-schedule-classroom-list'),
  32.   } %}
  33. </div>
  34. </section>
  35. {% endblock %}
  36. {% block siteFooter %}
  37.     {% include 'organisms/site-footer.html.twig' %}
  38. {% endblock %}