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

Open in your IDE?
  1. {% extends "layouts/services.html.twig" %}
  2. {% block bodyClass %}tpl-journal-front-page has-journal-skin{% endblock %}
  3. {% block siteHeader %}
  4.     {% include 'organisms/services-header.html.twig' %}
  5. {% endblock %}
  6. {% block pageHeader %}
  7.     <div class="page-header-wrapper">
  8.         <div class="container">
  9.             {% include 'molecules/page-header-with-menu.html.twig' with {
  10.                 breadcrumb: [
  11.                     { path: '', title: 'Miga de pan' }
  12.                 ],
  13.                 title: 'Título da páxina',
  14.                 submenu: [
  15.                     { path: '', name: 'Submenú 1' },
  16.                     { path: '', name: 'Submenú 2' }
  17.                 ]
  18.             } %}
  19.         </div>
  20.     </div>
  21. {% endblock %}
  22. {% block pageContent %}
  23.     <section class="org-tier">
  24.         <div class="tier-header">
  25.             <h2 class="tier-title">Eventos</h2>
  26.         </div>
  27.         <div class="tier-content">
  28.             <div class="org-modules-container">
  29.                 {% include 'molecules/events/s.html.twig' with {
  30.                     hasDate: true,
  31.                     modifiers: 'is-services'
  32.                 } %}
  33.                 {% include 'molecules/events/s.html.twig' with {
  34.                     hasDate: true,
  35.                     modifiers: 'is-services'
  36.                 } %}
  37.                 {% include 'molecules/events/s.html.twig' with {
  38.                     hasDate: true,
  39.                     modifiers: 'is-services'
  40.                 } %}
  41.                 {% include 'molecules/events/s.html.twig' with {
  42.                     hasDate: true,
  43.                     modifiers: 'is-services'
  44.                 } %}
  45.             </div>
  46.         </div>
  47.     </section>
  48. {% endblock %}
  49. {% block siteFooter %}
  50.     {% include 'organisms/site-footer.html.twig' %}
  51. {% endblock %}