templates/templates/pages/center/center-schedule-subject-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.     <usc-page-header>
  8.         <template v-slot:breadcrumb>
  9.             <ol class="at-breadcrumb">
  10.                 <li class="breadcrumb-item"><a href="{{ path('center-schedule') }}">Horarios</a></li>
  11.             </ol>
  12.         </template>
  13.         <h1 class="at-title">Horario de materias</h1>
  14.         <template v-slot:filters>
  15.             <div class="ml-filters-group">
  16.               <usc-dropdown-filter
  17.                   label="Plan de estudos"
  18.                   target-container="#banners-container-1"
  19.                   target-items=".ml-generic-summary"
  20.               >
  21.                   <template v-slot:default="slotProps">
  22.                       <li>
  23.                           <button type="button" @click="slotProps.reset">Todos os estudos</button>
  24.                       </li>
  25.                       <li>
  26.                           <button type="button" @click="slotProps.filter" data-value="is-type-1">Grao en Bioloxía</button>
  27.                       </li>
  28.                       <li>
  29.                           <button type="button" @click="slotProps.filter" data-value="is-type-2">Grao en Biotecnoloxía</button>
  30.                       </li>
  31.                   </template>
  32.               </usc-dropdown-filter>
  33.               <usc-dropdown-filter
  34.                   label="Curso"
  35.                   target-container="#banners-container-1"
  36.                   target-items=".ml-generic-summary"
  37.               >
  38.                   <template v-slot:default="slotProps">
  39.                       <li>
  40.                           <button type="button" @click="slotProps.reset">Todos os cursos</button>
  41.                       </li>
  42.                       <li>
  43.                           <button type="button" @click="slotProps.filter" data-value="is-course-1">Primeiro curso</button>
  44.                       </li>
  45.                       <li>
  46.                           <button type="button" @click="slotProps.filter" data-value="is-course-2">Segundo curso</button>
  47.                       </li>
  48.                       <li>
  49.                           <button type="button" @click="slotProps.filter" data-value="is-course-3">Terceiro curso</button>
  50.                       </li>
  51.                       <li>
  52.                           <button type="button" @click="slotProps.filter" data-value="is-course-4">Cuarto curso</button>
  53.                       </li>
  54.                   </template>
  55.               </usc-dropdown-filter>
  56.                 <usc-text-filter
  57.                     label="Filtro de texto"
  58.                     name="filter_1"
  59.                     icon="at-icon-search"
  60.                     target-container="#banners-container-1"
  61.                     target-items=".ml-generic-summary"
  62.                 ></usc-text-filter>
  63.             </div>
  64.         </template>
  65.     </usc-page-header>
  66. {% endblock %}
  67. {% block pageContent %}
  68.     <section class="org-tier is-minimal">
  69.         <div class="tier-content">
  70.             <div class="org-modules-container" id="banners-container-1">
  71.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  72.                     icon: 'at-icon-calendar',
  73.                     title: 'Nome da materia',
  74.                     text: 'Grao en Bioloxía',
  75.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  76.                     link: path('center-schedule-subject'),
  77.                     modifiers: 'is-type-1 is-course-1'
  78.                 } %}
  79.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  80.                     icon: 'at-icon-calendar',
  81.                     title: 'Nome da materia',
  82.                     text: 'Grao en Biotecnoloxía',
  83.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  84.                     link: path('center-schedule-subject'),
  85.                     modifiers: 'is-type-2 is-course-1'
  86.                 } %}
  87.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  88.                     icon: 'at-icon-calendar',
  89.                     title: 'Nome da materia',
  90.                     text: 'Grao en Biotecnoloxía',
  91.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  92.                     link: path('center-schedule-subject'),
  93.                     modifiers: 'is-type-2 is-course-1'
  94.                 } %}
  95.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  96.                     icon: 'at-icon-calendar',
  97.                     title: 'Nome da materia',
  98.                     text: 'Grao en Bioloxía',
  99.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  100.                     link: path('center-schedule-subject'),
  101.                     modifiers: 'is-type-1 is-course-1'
  102.                 } %}
  103.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  104.                     icon: 'at-icon-calendar',
  105.                     title: 'Nome da materia',
  106.                     text: 'Grao en Biotecnoloxía',
  107.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  108.                     link: path('center-schedule-subject'),
  109.                     modifiers: 'is-type-2 is-course-2'
  110.                 } %}
  111.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  112.                     icon: 'at-icon-calendar',
  113.                     title: 'Nome da materia',
  114.                     text: 'Grao en Biotecnoloxía',
  115.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  116.                     link: path('center-schedule-subject'),
  117.                     modifiers: 'is-type-2 is-course-2'
  118.                 } %}
  119.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  120.                     icon: 'at-icon-calendar',
  121.                     title: 'Nome da materia',
  122.                     text: 'Grao en Bioloxía',
  123.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  124.                     link: path('center-schedule-subject'),
  125.                     modifiers: 'is-type-1 is-course-2'
  126.                 } %}
  127.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  128.                     icon: 'at-icon-calendar',
  129.                     title: 'Nome da materia',
  130.                     text: 'Grao en Biotecnoloxía',
  131.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  132.                     link: path('center-schedule-subject'),
  133.                     modifiers: 'is-type-2 is-course-1'
  134.                 } %}
  135.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  136.                     icon: 'at-icon-calendar',
  137.                     title: 'Nome da materia',
  138.                     text: 'Grao en Bioloxía',
  139.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  140.                     link: path('center-schedule-subject'),
  141.                     modifiers: 'is-type-1 is-course-1'
  142.                 } %}
  143.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  144.                     icon: 'at-icon-calendar',
  145.                     title: 'Nome da materia',
  146.                     text: 'Grao en Biotecnoloxía',
  147.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  148.                     link: path('center-schedule-subject'),
  149.                     modifiers: 'is-type-2 is-course-1'
  150.                 } %}
  151.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  152.                     icon: 'at-icon-calendar',
  153.                     title: 'Nome da materia',
  154.                     text: 'Grao en Biotecnoloxía',
  155.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  156.                     link: path('center-schedule-subject'),
  157.                     modifiers: 'is-type-2 is-course-4'
  158.                 } %}
  159.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  160.                     icon: 'at-icon-calendar',
  161.                     title: 'Nome da materia',
  162.                     text: 'Grao en Biotecnoloxía',
  163.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  164.                     link: path('center-schedule-subject'),
  165.                     modifiers: 'is-type-2 is-course-4'
  166.                 } %}
  167.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  168.                     icon: 'at-icon-calendar',
  169.                     title: 'Nome da materia',
  170.                     text: 'Grao en Biotecnoloxía',
  171.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  172.                     link: path('center-schedule-subject'),
  173.                     modifiers: 'is-type-2 is-course-1'
  174.                 } %}
  175.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  176.                     icon: 'at-icon-calendar',
  177.                     title: 'Nome da materia',
  178.                     text: 'Grao en Bioloxía',
  179.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  180.                     link: path('center-schedule-subject'),
  181.                     modifiers: 'is-type-1 is-course-3'
  182.                 } %}
  183.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  184.                     icon: 'at-icon-calendar',
  185.                     title: 'Nome da materia',
  186.                     text: 'Grao en Biotecnoloxía',
  187.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  188.                     link: path('center-schedule-subject'),
  189.                     modifiers: 'is-type-2 is-course-3'
  190.                 } %}
  191.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  192.                     icon: 'at-icon-calendar',
  193.                     title: 'Nome da materia',
  194.                     text: 'Grao en Bioloxía',
  195.                     link: path('center-schedule-subject'),
  196.                     modifiers: 'is-type-1 is-course-3'
  197.                 } %}
  198.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  199.                     icon: 'at-icon-calendar',
  200.                     title: 'Nome da materia',
  201.                     text: 'Grao en Bioloxía',
  202.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  203.                     link: path('center-schedule-subject'),
  204.                     modifiers: 'is-type-1 is-course-2'
  205.                 } %}
  206.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  207.                     icon: 'at-icon-calendar',
  208.                     title: 'Nome da materia',
  209.                     text: 'Grao en Bioloxía',
  210.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  211.                     link: path('center-schedule-subject'),
  212.                     modifiers: 'is-type-1 is-course-2'
  213.                 } %}
  214.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  215.                     icon: 'at-icon-calendar',
  216.                     title: 'Nome da materia',
  217.                     text: 'Grao en Bioloxía',
  218.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  219.                     link: path('center-schedule-subject'),
  220.                     modifiers: 'is-type-1 is-course-2'
  221.                 } %}
  222.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  223.                     icon: 'at-icon-calendar',
  224.                     title: 'Nome da materia',
  225.                     text: 'Grao en Bioloxía',
  226.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  227.                     link: path('center-schedule-subject'),
  228.                     modifiers: 'is-type-1 is-course-2'
  229.                 } %}
  230.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  231.                     icon: 'at-icon-calendar',
  232.                     title: 'Nome da materia',
  233.                     text: 'Grao en Bioloxía',
  234.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  235.                     link: path('center-schedule-subject'),
  236.                     modifiers: 'is-type-1 is-course-3'
  237.                 } %}
  238.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  239.                     icon: 'at-icon-calendar',
  240.                     title: 'Nome da materia',
  241.                     text: 'Grao en Biotecnoloxía',
  242.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  243.                     link: path('center-schedule-subject'),
  244.                     modifiers: 'is-type-2 is-course-3'
  245.                 } %}
  246.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  247.                     icon: 'at-icon-calendar',
  248.                     title: 'Nome da materia',
  249.                     text: 'Grao en Biotecnoloxía',
  250.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  251.                     link: path('center-schedule-subject'),
  252.                     modifiers: 'is-type-2 is-course-4'
  253.                 } %}
  254.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  255.                     icon: 'at-icon-calendar',
  256.                     title: 'Nome da materia',
  257.                     text: 'Grao en Biotecnoloxía',
  258.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  259.                     link: path('center-schedule-subject'),
  260.                     modifiers: 'is-type-2 is-course-3'
  261.                 } %}
  262.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  263.                     icon: 'at-icon-calendar',
  264.                     title: 'Nome da materia',
  265.                     text: 'Grao en Bioloxía',
  266.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  267.                     link: path('center-schedule-subject'),
  268.                     modifiers: 'is-type-1 is-course-3'
  269.                 } %}
  270.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  271.                     icon: 'at-icon-calendar',
  272.                     title: 'Nome da materia',
  273.                     text: 'Grao en Bioloxía',
  274.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  275.                     link: path('center-schedule-subject'),
  276.                     modifiers: 'is-type-1 is-course-4'
  277.                 } %}
  278.                 {% include 'molecules/generic-summary/summary.html.twig' with {
  279.                     icon: 'at-icon-calendar',
  280.                     title: 'Nome da materia',
  281.                     text: 'Grao en Biotecnoloxía',
  282.                     text2: 'Curso | Convocatoria | Carácter | Módulo',
  283.                     link: path('center-schedule-subject'),
  284.                     modifiers: 'is-type-2 is-course-4'
  285.                 } %}
  286.             </div>
  287.         </div>
  288.     </section>
  289. {% endblock %}
  290. {% block siteFooter %}
  291.     {% include 'organisms/site-footer.html.twig' %}
  292. {% endblock %}