templates/templates/pages/center/center-schedule-classroom-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/organization-header.html.twig' %}
  5. {% endblock %}
  6. {% block pageHeader %}
  7.     {% include 'molecules/page-header.html.twig' with {
  8.       breadcrumb: [
  9.           { path: path('center-schedule'), title: 'Horarios' }
  10.       ],
  11.         title: 'Horarios por aulas'
  12.     } %}
  13. {% endblock %}
  14. {% block pageContent %}
  15. <section class="org-tier is-minimal">
  16.     <div class="tier-content">
  17.         <usc-content-filter
  18.                 :options="[{key: null, name: 'Todo', selected: true}, {key: 'is-type-1', name: 'Aulas', selected: false}, {key: 'is-type-2', name: 'Laboratorios', selected: false} ]"
  19.         >
  20.             <template v-slot:filters>
  21.                 <usc-text-filter
  22.                         target-container="#banners-container-1"
  23.                         target-items=".ml-banner"
  24.                 ></usc-text-filter>
  25.             </template>
  26.             <div class="org-modules-container has-banners" id="banners-container-1">
  27.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 1', link: path('center-schedule-classroom') } %}
  28.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 2', link: path('center-schedule-classroom') } %}
  29.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 3', link: path('center-schedule-classroom') } %}
  30.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 4', link: path('center-schedule-classroom') } %}
  31.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 5', link: path('center-schedule-classroom') } %}
  32.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 6', link: path('center-schedule-classroom') } %}
  33.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 7', link: path('center-schedule-classroom') } %}
  34.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 8', link: path('center-schedule-classroom') } %}
  35.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 1' } %}
  36.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 2' } %}
  37.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 3' } %}
  38.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 4' } %}
  39.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 5' } %}
  40.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 6' } %}
  41.               {% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 7' } %}
  42.             </div>
  43.         </usc-content-filter>
  44.     </div>
  45. </section>
  46. {% endblock %}
  47. {% block siteFooter %}
  48.     {% include 'organisms/site-footer.html.twig' %}
  49. {% endblock %}