templates/pages/evenements.html.twig line 1

  1. {% extends "base.html.twig" %}
  2. {% block content %}
  3. <div class="p-6">
  4.     <h1>{{ content.title }}</h1>
  5.     
  6.     {% include 'includes/blocks.html.twig' with {
  7.             content: {blocks: content.blocks},
  8.             view: {blocks: view.blocks},
  9.     } only %}
  10. </div>
  11. {% endblock %}