templates/pages/homepage.html.twig line 1

  1. {% extends "base.html.twig" %}
  2. {% block header_secondary %}
  3.     <div class="font-cursive text-3xl text-white break-words hidden lg:block">
  4.         Un camp, un événement Repère, c'est un temps fort qui peut changer et marquer une vie !
  5.     </div>
  6. {% endblock %}
  7. {% block content %}
  8.     <div class="p-6">
  9.         {% include 'includes/blocks.html.twig' with {
  10.                 content: {blocks: content.blocks},
  11.                 view: {blocks: view.blocks},
  12.         } only %}
  13.     </div>
  14. {% endblock %}