templates/templates/pages/center/CLM/CLM-activities.html.twig line 1

Open in your IDE?
  1. {% extends "layouts/organization.html.twig" %}
  2. {% block bodyClass %}is-clm{% endblock %}
  3. {% block siteHeader %}
  4.   {% include 'organisms/clm-organization-header.html.twig' %}
  5. {% endblock %}
  6. {% block pageHeader %}
  7.     {% include 'molecules/page-header.html.twig' with {
  8.         title: 'Actividades'
  9.     } %}
  10. {% endblock %}
  11. {% block pageContent %}
  12. <section class="org-tier is-minimal is-marginless-top">
  13.     <div class="tier-content">
  14.         <usc-content-filter
  15.                 :options="[
  16.                 {key: null, name: 'Todos os idiomas', selected: true}, 
  17.                 {key: 'is-type-1', name: 'Inglés', selected: false}, 
  18.                 {key: 'is-type-2', name: 'Francés', selected: false}, 
  19.                 {key: 'is-type-3', name: 'Castelán', selected: false}, 
  20.                 {key: 'is-type-4', name: 'Galego', selected: false} ]" 
  21.         >
  22.             <template v-slot:filters>
  23.                 <usc-text-filter
  24.                         target-container="#banners-container-1"
  25.                         target-items=".ml-banner"
  26.                 ></usc-text-filter>
  27.             </template>
  28.             <div class="org-modules-container  has-banners" id="banners-container-1">
  29.         {% include 'molecules/banners/m.html.twig' with {
  30.           title: 'Unha actividade de Inglés',
  31.           text: 'Pequena descrición dunha actividade do CLM',
  32.           link: path('CLM_activity'),
  33.           modifiers:'is-type-1'
  34.         } %}
  35.         {% include 'molecules/banners/m.html.twig' with {
  36.           title: 'Unha actividade de Castelán',
  37.           text: 'Pequena descrición dunha actividade do CLM',
  38.           link: path('CLM_activity'),
  39.           modifiers:'is-type-3'
  40.         } %}
  41.         {% include 'molecules/banners/m.html.twig' with {
  42.           title: 'Unha actividade de Galego',
  43.           text: 'Pequena descrición dunha actividade do CLM',
  44.           link: path('CLM_activity'),
  45.           modifiers:'is-type-4'
  46.         } %}
  47.         {% include 'molecules/banners/m.html.twig' with {
  48.           title: 'Unha actividade de Francés',
  49.           text: 'Pequena descrición dunha actividade do CLM',
  50.           link: path('CLM_activity'),
  51.           modifiers:'is-type-2'
  52.         } %}
  53.         {% include 'molecules/banners/m.html.twig' with {
  54.           title: 'Unha actividade de Castelán',
  55.           text: 'Pequena descrición dunha actividade do CLM',
  56.           link: path('CLM_activity'),
  57.           modifiers:'is-type-3'
  58.         } %}
  59.         {% include 'molecules/banners/m.html.twig' with {
  60.           title: 'Unha actividade de Galego',
  61.           text: 'Pequena descrición dunha actividade do CLM',
  62.           link: path('CLM_activity'),
  63.           modifiers:'is-type-4'
  64.         } %}
  65.         {% include 'molecules/banners/m.html.twig' with {
  66.           title: 'Unha actividade de Castelán',
  67.           text: 'Pequena descrición dunha actividade do CLM',
  68.           link: path('CLM_activity'),
  69.           modifiers:'is-type-3'
  70.         } %}
  71.             </div>
  72.         </usc-content-filter>
  73.     </div>
  74. </section>
  75. {% endblock %}
  76. {% block siteFooter %}
  77.     {% include 'organisms/site-footer.html.twig' %}
  78. {% endblock %}