templates/templates/pages/services/services-agenda.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-area-header.html.twig' %}
  5. {% endblock %}
  6. {% block pageHeader %}
  7.     <div class="page-header-wrapper">
  8.         <div class="container">
  9.             {% include 'molecules/page-header.html.twig' with {
  10.                 title: 'Axenda',
  11.             } %}
  12.         </div>
  13.     </div>
  14. {% endblock %}
  15. {% block pageContent %}
  16.     <form class="ml-form" method="get" action="">
  17.         <div class="form-content">
  18.             <div class="row">
  19.                 <div class="col-md-12 col-lg-6">
  20.                     <div class="form-group has-button">
  21.                         <label for="form1-example-input-button" class="is-sr-only">Buscar</label>
  22.                         <input type="text" name="q" class="form-control" id="form1-example-input-button" placeholder="Buscar">
  23.                         <button class="at-button is-primary at-icon-search has-icon"><span>Buscar</span></button>
  24.                     </div>
  25.                 </div>
  26.                 <div class="col-md-6 col-lg-3">
  27.                     <div class="form-group">
  28.                         <label for="date-from" class="is-sr-only">Dende</label>
  29.                         <input type="date" name="from" id="date-from" class="form-control" placeholder="Dende..." title="Dende..." />
  30.                     </div>
  31.                 </div>
  32.                 <div class="col-md-6 col-lg-3">
  33.                     <div class="form-group">
  34.                         <label for="date-to" class="is-sr-only">Ata</label>
  35.                         <input type="date" name="to" id="date-to" class="form-control" placeholder="Ata..." title="Ata..." />
  36.                     </div>
  37.                 </div>
  38.             </div>
  39.         </div>
  40.     </form>
  41.     <div class="org-modules-container has-margin-top">
  42.         {% include 'molecules/events/m.html.twig' with {
  43.           link: path('services-event'),
  44.           hasImage: true, hasDate: true } %}
  45.         {% include 'molecules/events/m.html.twig' with {
  46.           link: path('services-event'),
  47.           hasImage: true, hasDate: true } %}
  48.         {% include 'molecules/events/m.html.twig' with {
  49.           link: path('services-event'),
  50.           hasImage: true, hasDate: true } %}
  51.         {% include 'molecules/events/m.html.twig' with {
  52.           link: path('services-event'),
  53.           hasDate: true } %}
  54.         {% include 'molecules/events/m.html.twig' with {
  55.           link: path('services-event'),
  56.           hasDate: true } %}
  57.         {% include 'molecules/events/m.html.twig' with {
  58.           link: path('services-event'),
  59.           hasDate: true } %}
  60.         {% include 'molecules/events/m.html.twig' with {
  61.           link: path('services-event'),
  62.           hasDate: true } %}
  63.         {% include 'molecules/events/m.html.twig' with {
  64.           link: path('services-event'),
  65.           hasDate: true } %}
  66.         {% include 'molecules/events/m.html.twig' with {
  67.           link: path('services-event'),
  68.           hasDate: true } %}
  69.     </div>
  70. {% endblock %}
  71. {% block siteFooter %}
  72.     {% include 'organisms/site-footer.html.twig' %}
  73. {% endblock %}