templates/templates/pages/center/CLM/CLM-languages.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: 'Linguas'
  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/m.html.twig' with {
  15.        title: 'Galego',
  16.        text: '',
  17.        link: path('CLM_course'),
  18.   } %}
  19.   {% include 'molecules/banners/m.html.twig' with {
  20.        title: 'Castelán',
  21.        text: '',
  22.        link: path('CLM_course'),
  23.   } %}
  24.   {% include 'molecules/banners/m.html.twig' with {
  25.        title: 'Inglés',
  26.        text: '',
  27.        link: path('CLM_course'),
  28.   } %}
  29.   {% include 'molecules/banners/m.html.twig' with {
  30.        title: 'Francés',
  31.        text: '',
  32.        link: path('CLM_course'),
  33.   } %}
  34.   {% include 'molecules/banners/m.html.twig' with {
  35.        title: 'Italiano',
  36.        text: '',
  37.        link: path('CLM_course'),
  38.   } %}
  39.   {% include 'molecules/banners/m.html.twig' with {
  40.        title: 'Portugués',
  41.        text: '',
  42.        link: path('CLM_course'),
  43.   } %}
  44.   {% include 'molecules/banners/m.html.twig' with {
  45.        title: 'Outro idioma',
  46.        text: '',
  47.        link: path('CLM_course'),
  48.   } %}
  49. </div>
  50. </section>
  51. {% endblock %}
  52. {% block siteFooter %}
  53.     {% include 'organisms/site-footer.html.twig' %}
  54. {% endblock %}