templates/templates/pages/center/center-calendar.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: 'Calendarios'
  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: 'Calendario do centro',
  16.        link: path('center-calendar-general'),
  17.   } %}
  18.   {% include 'molecules/banners/m.html.twig' with {
  19.        title: 'TFG/TFM',
  20.        text: '',
  21.        link: path('center-calendar-works'),
  22.   } %}
  23.   {% include 'molecules/banners/m.html.twig' with {
  24.        title: 'Exames',
  25.        text: '',
  26.        link: path('center-calendar-exams'),
  27.   } %}
  28.   </div>
  29. </section>
  30. {% endblock %}
  31. {% block siteFooter %}
  32.     {% include 'organisms/site-footer.html.twig' %}
  33. {% endblock %}