templates/templates/pages/department/department-government.html.twig line 1

Open in your IDE?
  1. {% extends "layouts/organization.html.twig" %}
  2. {% block bodyClass %}{% endblock %}
  3. {% block siteHeader %}
  4.   {% include 'organisms/department-header.html.twig' %}
  5. {% endblock %}
  6. {% block pageHeader %}
  7.     {% include 'molecules/page-header.html.twig' with {
  8.         title: 'Dirección'
  9.     } %}
  10. {% endblock %}
  11. {% block pageContent %}
  12.         <section class="org-tier is-minimal is-marginless-top">
  13.             <div class="tier-content">
  14.                 <div class="row">
  15.                     <div class="col-md-6 col-lg-3">
  16.                         {% include 'molecules/members/government.html.twig' with {
  17.                           hasImage: false,
  18.                           cargo: 'Directora'
  19.                         } %}
  20.                     </div>
  21.                     <div class="col-md-6 col-lg-3">
  22.                         {% include 'molecules/members/government.html.twig' with {
  23.                           hasImage: false,
  24.                           cargo: 'Secretario'
  25.                         } %}
  26.                     </div>
  27.                 </div>
  28.           </section>
  29.         <div class="row">
  30.             <div class="col-lg-6 col-md-12">
  31.               <section class="org-tier">
  32.               <div class="tier-header">
  33.                 <h2 class="tier-title">Consello de Departamento</h2>
  34.                 <div class="tier-action">
  35.                 </div>
  36.               </div>
  37.               <div class="tier-content">
  38.                   <div class="org-modules-container has-banners">
  39.                       {% include 'molecules/banners/s.html.twig' with {
  40.                         modifiers: 'is-light',
  41.                         link: 'https://sharepoint.com',
  42.                         title: 'Composición do Consello de Departamento'
  43.                       } %}
  44.                       {% include 'molecules/banners/s.html.twig' with {
  45.                         modifiers: 'is-light',
  46.                         link: 'https://sharepoint.com',
  47.                         title: 'Documentación'
  48.                       } %}
  49.                   </div>
  50.               </div>
  51.             </div>
  52.           </section>
  53.           <div class="col-lg-6 col-md-12">
  54.           <section class="org-tier">
  55.               <div class="tier-header">
  56.                 <h2 class="tier-title">Comisión permanente</h2>
  57.                 <div class="tier-action">
  58.                 </div>
  59.               </div>
  60.               <div class="tier-content">
  61.                   <div class="org-modules-container has-banners">
  62.                     {% include 'molecules/banners/s.html.twig' with {
  63.                       modifiers: 'is-light',
  64.                       link: 'https://sharepoint.com',
  65.                       title: 'Composición da Comisión permanente'
  66.                     } %}
  67.                     {% include 'molecules/banners/s.html.twig' with {
  68.                       modifiers: 'is-light',
  69.                       link: 'https://sharepoint.com',
  70.                       title: 'Documentación'
  71.                     } %}
  72.                   </div>
  73.               </div>
  74.           </section>
  75.         </div>
  76.       </div>
  77. {% endblock %}
  78. {% block siteFooter %}
  79.     {% include 'organisms/site-footer.html.twig' %}
  80. {% endblock %}