templates/templates/models/agenda-front-page.html.twig line 1

Open in your IDE?
  1. {% extends "layouts/master.html.twig" %}
  2. {% block bodyClass %}tpl-agenda-front-page{% 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: 'Axenda'
  9.     } %}
  10. {% endblock %}
  11. {% block pageContent %}
  12.     <div class="content-filter-options-wrapper">
  13.         <div class="ml-content-filter-options">
  14.             <ul class="content-filter-options-list">
  15.                 <li>
  16.                     <a href="" class="at-content-filter-option is-selected">Ver todo</a>
  17.                 </li>
  18.                 <li>
  19.                     <a href="" class="at-content-filter-option">Opción 1</a>
  20.                 </li>
  21.                 <li>
  22.                     <a href="" class="at-content-filter-option">Opción 2</a>
  23.                 </li>
  24.             </ul>
  25.         </div>
  26.     </div>
  27.     <form class="ml-form" method="get" action="">
  28.         <div class="form-content">
  29.             <div class="row">
  30.                 <div class="col-md-12 col-lg-6">
  31.                     <div class="form-group has-button">
  32.                         <label for="form1-example-input-button" class="is-sr-only">Buscar</label>
  33.                         <input type="text" name="q" class="form-control" id="form1-example-input-button" placeholder="Buscar">
  34.                         <button class="at-button is-primary at-icon-search has-icon"><span>Buscar</span></button>
  35.                     </div>
  36.                 </div>
  37.                 <div class="col-md-6 col-lg-3">
  38.                     <div class="form-group">
  39.                         <label for="date-from" class="is-sr-only">Dende</label>
  40.                         <input type="date" name="from" id="date-from" class="form-control" placeholder="Dende..." title="Dende..." />
  41.                     </div>
  42.                 </div>
  43.                 <div class="col-md-6 col-lg-3">
  44.                     <div class="form-group">
  45.                         <label for="date-to" class="is-sr-only">Ata</label>
  46.                         <input type="date" name="to" id="date-to" class="form-control" placeholder="Ata..." title="Ata..." />
  47.                     </div>
  48.                 </div>
  49.             </div>
  50.         </div>
  51.     </form>
  52.     <div class="org-modules-container has-margin-top">
  53.         {% include 'molecules/events/m.html.twig' with { hasImage: true, hasDate: true } %}
  54.         {% include 'molecules/events/m.html.twig' with { hasImage: true, hasDate: true } %}
  55.         {% include 'molecules/events/m.html.twig' with { hasImage: true, hasDate: true } %}
  56.         {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  57.         {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  58.         {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  59.         {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  60.         {% include 'molecules/events/m.html.twig' with { hasDate: true, date: '15 xuñ-20 ago', modifiers: 'has-began' } %}
  61.         {% include 'molecules/events/m.html.twig' with { hasDate: true, date: '15 xuñ-20 ago', modifiers: 'has-began' } %}
  62.     </div>
  63.     <div class="org-tier has-margin-top">
  64.         <div class="tier-header">
  65.             <h2 class="tier-title">14 de abril</h2>
  66.         </div>
  67.         <div class="tier-content">
  68.             <div class="org-modules-container">
  69.                 {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  70.                 {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  71.                 {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  72.                 {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  73.                 {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  74.                 {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  75.                 {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  76.                 {% include 'molecules/events/m.html.twig' with { hasDate: true } %}
  77.             </div>
  78.         </div>
  79.     </div>
  80. {% endblock %}
  81. {% block siteFooter %}
  82.     {% include 'organisms/site-footer.html.twig' %}
  83. {% endblock %}