templates/frontend/pages/about.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{ 'menu.about' | trans }}{% endblock %}
  3. {% block body %}
  4.     <div class="space-y-8 mx-4 lg:w-[1280px] lg:mx-auto min-h-[600px]">
  5.         <h5 class="border-b-4 border-gray-200 py-2 font-bold mb-8">{{ 'menu.about' | trans }}</h5>
  6.         {{ include('common/_empty.html.twig') }}
  7.         {% include 'frontend/board/_board.html.twig' with {boards: boards, title: 'board.title' | trans} %}
  8.         {% include 'frontend/board/_board.html.twig' with {boards: boards2, title: 'board.title2' | trans } %}
  9.         <h5 class="border-b-4 border-gray-200 py-2 font-bold mb-8">{{ 'about.gallery' | trans }}</h5>
  10.         {% include 'common/_gallery.html.twig' with {images: images } %}
  11.     </div>
  12. {% endblock %}