templates/templates/pages/government-areas/government-journal-frontpage.html.twig line 1

Open in your IDE?
  1. {% extends "layouts/master.html.twig" %}
  2. {% block bodyClass %}tpl-journal-front-page is-government{% endblock %}
  3. {% block siteHeader %}
  4.     {% include 'organisms/site-header.html.twig' %}
  5. {% endblock %}
  6. {% block pageHeader %}
  7.     {% include 'molecules/page-header.html.twig' with {
  8.         title: 'Diario de Goberno'
  9.     } %}
  10. {% endblock %}
  11. {% block pageContent %}
  12.     <section class="org-tier is-marginless-top">
  13.         <div class="tier-header is-marginless">
  14.             <h2 class="tier-title">Actualidade</h2>
  15.         </div>
  16.         <div class="tier-content">
  17.             <div class="org-modules-container">
  18.                 {% include 'molecules/news/l-institutional.html.twig' %}
  19.                 {% include 'molecules/news/m.html.twig' with { hasImage: true } %}
  20.                 {% include 'molecules/news/m.html.twig' with { hasImage: true } %}
  21.             </div>
  22.         </div>
  23.     </section>
  24.     <section class="org-tier">
  25.         <div class="tier-header">
  26.             <h2 class="tier-title">Accións de goberno</h2>
  27.             <div class="tier-action">
  28.                 <a href="{{ path('government-action-frontpage') }}">ver máis</a>
  29.             </div>
  30.         </div>
  31.         <div class="tier-content">
  32.             <div class="org-modules-container has-banners">
  33.                 {% include 'molecules/banners/l.html.twig' with {
  34.                   modifiers: '',
  35.                   hasImage: true,
  36.                   title: 'Acción de goberno',
  37.                   link: path('government-action')} %}
  38.                 {% include 'molecules/banners/m.html.twig' with {
  39.                   modifiers: '',
  40.                   hasImage: true,
  41.                   title: 'Acción de goberno'} %}
  42.                 {% include 'molecules/banners/m.html.twig' with {
  43.                   modifiers: '',
  44.                   title: 'Acción de goberno'} %}
  45.                 {% include 'molecules/banners/m.html.twig' with {
  46.                   modifiers: '',
  47.                   title:'Acción de goberno'} %}
  48.             </div>
  49.         </div>
  50.     </section>
  51.     <section class="org-tier">
  52.         <div class="tier-header">
  53.             <h2 class="tier-title">Axenda</h2>
  54.             <div class="tier-action">
  55.                 <a href="{{ path('agenda_frontpage') }}">ver máis</a>
  56.             </div>
  57.         </div>
  58.         <div class="tier-content">
  59.             <div class="org-modules-container">
  60.                 {% include 'molecules/events/m.html.twig' with { hasDate: true, hasImage: true } %}
  61.                 {% include 'molecules/events/m.html.twig' with { hasDate: true, hasImage: true } %}
  62.                 {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  63.                 {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  64.                 {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  65.                 {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  66.             </div>
  67.         </div>
  68.     </section>
  69. {% endblock %}
  70. {% block siteFooter %}
  71.     {% include 'organisms/site-footer.html.twig' %}
  72. {% endblock %}