{% extends "layouts/organization.html.twig" %}
{% block bodyClass %}{% endblock %}
{% block siteHeader %}
{% include 'organisms/organization-header.html.twig' %}
{% endblock %}
{% block pageHeader %}
{% include 'molecules/page-header.html.twig' with {
breadcrumb: [
{ path: path('center-schedule'), title: 'Horarios' }
],
title: 'Horarios por aulas'
} %}
{% endblock %}
{% block pageContent %}
<section class="org-tier is-minimal">
<div class="tier-content">
<usc-content-filter
:options="[{key: null, name: 'Todo', selected: true}, {key: 'is-type-1', name: 'Aulas', selected: false}, {key: 'is-type-2', name: 'Laboratorios', selected: false} ]"
>
<template v-slot:filters>
<usc-text-filter
target-container="#banners-container-1"
target-items=".ml-banner"
></usc-text-filter>
</template>
<div class="org-modules-container has-banners" id="banners-container-1">
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 1', link: path('center-schedule-classroom') } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 2', link: path('center-schedule-classroom') } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 3', link: path('center-schedule-classroom') } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 4', link: path('center-schedule-classroom') } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 5', link: path('center-schedule-classroom') } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 6', link: path('center-schedule-classroom') } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 7', link: path('center-schedule-classroom') } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-1', hasImage: false, title: 'Aula 8', link: path('center-schedule-classroom') } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 1' } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 2' } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 3' } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 4' } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 5' } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 6' } %}
{% include 'molecules/banners/s.html.twig' with { modifiers: 'is-light is-type-2', hasImage: false, title: 'Laboratorio 7' } %}
</div>
</usc-content-filter>
</div>
</section>
{% endblock %}
{% block siteFooter %}
{% include 'organisms/site-footer.html.twig' %}
{% endblock %}