templates/templates/models/services/facilities-skin.html.twig line 1

Open in your IDE?
  1. {% extends "layouts/services.html.twig" %}
  2. {% block bodyClass %}has-facilities-skin{% endblock %}
  3. {% block facilitiesSkinImage %}background-image: url('https://picsum.photos/1440/400');{% endblock %}
  4. {% block siteHeader %}
  5.     {% include 'organisms/services-header.html.twig' with {
  6.         logo: asset('/images/logo-neg.svg'),
  7.         taxonomy: { path: '', name: 'Área ou Unidade' }
  8.     } %}
  9. {% endblock %}
  10. {% block pageHeader %}
  11.     <div class="page-header-wrapper">
  12.         <div class="container">
  13.             {% include 'molecules/page-header-with-menu.html.twig' with {
  14.                 breadcrumb: [
  15.                     { path: '', title: 'Miga de pan' }
  16.                 ],
  17.                 title: 'Título da páxina',
  18.                 submenu: [
  19.                     { path: '', name: 'Submenú 1' },
  20.                     { path: '', name: 'Submenú 2' }
  21.                 ]
  22.             } %}
  23.         </div>
  24.     </div>
  25. {% endblock %}
  26. {% block pageContent %}
  27.     <div class="row">
  28.         <div class="col-lg-9">
  29.             <div class="org-modules-container has-banners">
  30.                 {% include 'molecules/banners/m.html.twig' with {
  31.                     modifiers: 'is-services'
  32.                 } %}
  33.                 {% include 'molecules/banners/m.html.twig' with {
  34.                     modifiers: 'is-services is-program'
  35.                 } %}
  36.                 {% include 'molecules/banners/m.html.twig' with {
  37.                     modifiers: 'is-services is-strategy'
  38.                 } %}
  39.                 {% include 'molecules/banners/m.html.twig' with {
  40.                     modifiers: 'is-services is-entity'
  41.                 } %}
  42.                 {% include 'molecules/banners/m.html.twig' with {
  43.                     modifiers: 'is-services is-activity'
  44.                 } %}
  45.                 {% include 'molecules/banners/m.html.twig' with {
  46.                     modifiers: 'is-services is-interaction'
  47.                 } %}
  48.             </div>
  49.         </div>
  50.     </div>
  51.     <section class="org-tier">
  52.         <div class="tier-header">
  53.             <h2 class="tier-title">Eventos</h2>
  54.         </div>
  55.         <div class="tier-content">
  56.             <div class="org-modules-container">
  57.                 {% include 'molecules/events/s.html.twig' with {
  58.                     hasDate: true,
  59.                     modifiers: 'is-services'
  60.                 } %}
  61.                 {% include 'molecules/events/s.html.twig' with {
  62.                     hasDate: true,
  63.                     modifiers: 'is-services'
  64.                 } %}
  65.                 {% include 'molecules/events/s.html.twig' with {
  66.                     hasDate: true,
  67.                     modifiers: 'is-services'
  68.                 } %}
  69.                 {% include 'molecules/events/s.html.twig' with {
  70.                     hasDate: true,
  71.                     modifiers: 'is-services'
  72.                 } %}
  73.             </div>
  74.         </div>
  75.     </section>
  76. {% endblock %}
  77. {% block siteFooter %}
  78.     {% include 'organisms/site-footer.html.twig' %}
  79. {% endblock %}