templates/main/index.html.twig line 1

  1. {% extends 'public_layout.html.twig' %}
  2. {% block title %}{{ 'Accueil'|trans }}{% endblock %}
  3. {% block content %}
  4.     <turbo-frame id="frame_content" data-turbo-action="advance">
  5.         <section>
  6.             <h1 class="display-3">{{ 'Benjamin Zaslavsky'|trans }}</h1>
  7.             <span class="display-6" {{ stimulus_controller('symfony/ux-typed', {
  8.                 strings: [
  9.                     "Développeur PHP-Symfony."|trans,
  10.                     "Développeur PHP-Symfony.<br>Et un peu d'écriture."|trans,
  11.                     "Développeur PHP-Symfony.<br>Et beaucoup d'écriture."|trans,
  12.                 ],
  13.                 startDelay: 500,
  14.                 cursorChar: '|'
  15.             }) }}></span>
  16.             <hr>
  17.             <section>
  18.                 <h2>{{ 'Qui suis-je?'|trans }}</h2>
  19.                 {% trans %}
  20.                     <p>Obi-Wan was wise to hide her from me. Now his failure is complete. If you will not turn to the
  21.                         dark side, then perhaps she will. Never-r-r! Good! Your hate has made you powerful. Now, fulfill
  22.                         your destiny and take your father's place at my side! Never! I'll never turn to the dark
  23.                         side.</p>
  24.                 {% endtrans %}
  25.             </section>
  26.             <hr>
  27.             <div>
  28.                 <a href="{{ path('cms_post_index') }}"
  29.                    class="btn btn-outline-primary float-end">{{ 'Liste des billets'|trans }}</a>
  30.                 <h3>{{ 'Dernier post :'|trans }}</h3>
  31.                 {% if lastPost is not null %}
  32.                     <article class="surface p-3">
  33.                         {{ include('post/includes/_post.html.twig', {'post': lastPost}, with_context = false) }}
  34.                     </article>
  35.                 {% else %}
  36.                     <p>{{ 'Pas de posts...'|trans }}</p>
  37.                 {% endif %}
  38.             </div>
  39.         </section>
  40.     </turbo-frame>
  41. {% endblock %}