templates/hobby/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{page.translate(locale).title}}{% endblock %}
  3. {% block meta_desc %}{{page.translate(locale).introduction[:150]|striptags|raw }}...{% endblock %}
  4. {% block body %}
  5. {% include "components/areas/page/welcome.html.twig" %}
  6. <main class="hobby-main">
  7.     <section class="page-header hobby-header">
  8.         <div class="container">
  9.             <h2 class="page-header-title">{{page.translate(locale).title}}</h2>
  10.             <div class="outline"></div>
  11.             <div class="page-header-intro">{{page.translate(locale).introduction|raw}}</div>
  12.         </div>
  13.     </section>
  14.     <section class="page-content hobby-content">
  15.         <div class="container">
  16.             <div class="page-hobbies-ctn">
  17.                  {% for item in hobbies %}
  18.                         <div class="hobby-flex">
  19.                             <div class="hobby-text">
  20.                                 <h2 class="hobby-title area-title">
  21.                                     <a href="#" data-toggle="modal" data-target="#modal-hobby-{{item.id}}">{{item.translate(locale).title}}</a>
  22.                                 </h2>
  23.                                 <div class="line"></div>
  24.                                 <div class="hobby-p area-p">
  25.                                        {{item.translate(locale).introduction|raw}}
  26.                                 </div>
  27.                                 {# <a href="#" class="read-more">En savoir plus</a> #}
  28.                             </div>
  29.                             <div class="hobby-img">
  30.                                 <a href="#" data-toggle="modal" data-target="#modal-hobby-{{item.id}}">
  31.                                     <img data-src="images/hobby/{{item.coverImage}}" class="lazy" alt="{{item.translate(locale).title}}">
  32.                                 </a>
  33.                             </div>
  34.                         </div>
  35.                         {% include "components/modals/modal_hobby.html.twig" %}
  36.                 {% endfor %}
  37.             </div>
  38.         </div>
  39.     </section>
  40. </main>
  41. {% endblock %}