templates/templates/pages/center/center-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/organization-header.html.twig' %}
  5. {% endblock %}
  6. {% block pageHeader %}
  7.     {% include 'molecules/page-header.html.twig' with {
  8.         title: 'Goberno'
  9.     } %}
  10. {% endblock %}
  11. {% block pageContent %}
  12. <div class="row">
  13.   <div class="col-lg-6">
  14.         <section class="org-tier is-marginless-top">
  15.             <div class="tier-header">
  16.                 <h2 class="tier-title">Contacto</h2>
  17.             </div>
  18.             <div class="tier-content">
  19.                 <div class="row">
  20.                     <div class="col-md-6">
  21.                         <dl class="at-desc-list at-small">
  22.                         <dt>Teléfono</dt>
  23.                         <dd><a href="">981 560 250</a></dd>
  24.                         <dt>Email</dt>
  25.                         <dd><a href="">info@espazo.gal</a></dd>
  26.                     </dl>
  27.                     </div>
  28.                 </div>
  29.           </section>
  30.         <section class="org-tier is-marginless-top">
  31.             <div class="tier-header">
  32.                 <h2 class="tier-title">Equipo decanal</h2>
  33.             </div>
  34.             <div class="tier-content">
  35.                 <div class="row">
  36.                     <div class="col-md-6">
  37.                         {% include 'molecules/members/government.html.twig' with {
  38.                           hasImage: false,
  39.                           cargo: 'Decana'
  40.                         } %}
  41.                     </div>
  42.                 </div>
  43.                 <div class="row">
  44.                     <div class="col-md-6">
  45.                       {% include 'molecules/members/government.html.twig' with {
  46.                         hasImage: false,
  47.                         cargo: 'Vicedecano'
  48.                       } %}                    </div>
  49.                     <div class="col-md-6">
  50.                       {% include 'molecules/members/government.html.twig' with {
  51.                         hasImage: false,
  52.                         cargo: 'Vicedecana'
  53.                       } %}                    </div>
  54.                 </div>
  55.           </section>
  56.   </div>
  57.   <div class="col-lg-6">
  58.     <section class="org-tier is-marginless-top">
  59.         <div class="tier-header">
  60.           <h2 class="tier-title">Xunta de facultade</h2>
  61.           <div class="tier-action">
  62.           </div>
  63.         </div>
  64.         <div class="tier-content">
  65.             <div class="org-modules-container has-banners">
  66.                 {% include 'molecules/banners/s.html.twig' with {
  67.                   modifiers: 'is-light',
  68.                   link: 'https://sharepoint.com',
  69.                   title: 'Xunta de facultade'
  70.                 } %}
  71.             </div>
  72.         </div>
  73.     </section>
  74.         <section class="org-tier">
  75.             <div class="tier-header">
  76.               <h2 class="tier-title">Comisións</h2>
  77.               <div class="tier-action">
  78.               </div>
  79.             </div>
  80.             <div class="tier-content">
  81.                 <div class="org-modules-container has-banners">
  82.                     {% include 'molecules/banners/s.html.twig' with {
  83.                       modifiers: 'is-light',
  84.                       link: 'https://sharepoint.com',
  85.                       title: 'Nome de comisión'
  86.                     } %}
  87.                     {% include 'molecules/banners/s.html.twig' with {
  88.                       modifiers: 'is-light',
  89.                       link: 'https://sharepoint.com',
  90.                       title: 'Nome de comisión'
  91.                     } %}
  92.                     {% include 'molecules/banners/s.html.twig' with {
  93.                       modifiers: 'is-light',
  94.                       link: 'https://sharepoint.com',
  95.                       title: 'Nome de comisión'
  96.                     } %}
  97.                 </div>
  98.             </div>
  99.         </section>
  100.       </div>
  101.   </div>
  102. </div>
  103. {% endblock %}
  104. {% block siteFooter %}
  105.     {% include 'organisms/site-footer.html.twig' %}
  106. {% endblock %}