templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{ 'home.feed.title'|trans }}{% endblock %}
  3. {% block body %}
  4.     <section class="container py-3">
  5.         <h1 class="h4 mb-3">{{ 'home.feed.title'|trans }}</h1>
  6.         {# <div class="alert alert-dark shadow-sm" role="alert">
  7.             <i class="fa-solid fa-crown text-warning"></i>
  8.             <strong>{{ 'home.premium_card.title'|trans }}</strong>
  9.             <ul class="mb-0 mt-2">
  10.                 <li>{{ 'home.premium_card.li_match'|trans }}</li>
  11.                 <li>{{ 'home.premium_card.li_random'|trans }}</li>
  12.                 <li><i class="fa-solid fa-crown text-warning"></i> {{ 'profile_page.premium_badge_note'|trans }}</li>
  13.             </ul>
  14.         </div> #}
  15.     <div data-controller="home"></div>
  16.     </section>
  17. {% endblock %}