source/View/Templates/Layouts/threeColumn.html.twig line 1

Open in your IDE?
  1. {% extends "Layouts/base.html.twig" %}
  2. {% block body %}
  3.     <div class="max-w-screen-xl pl-2 mx-auto">
  4.         <a href="{{ path("Study-overview") }}"
  5.            class="inline-flex items-center mt-2 underline Button Button_tertiary Button_tertiary_go Button_standalone">
  6.             {# Icon: ic:sharp-arrow-back #}
  7.             <svg class="w-4 h-4 mr-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
  8.                  aria-hidden="true" role="img" style="vertical-align: -0.125em;" width="1em" height="1em"
  9.                  preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24">
  10.                 <path d="M20 11H7.83l5.59-5.59L12 4l-8 8l8 8l1.41-1.41L7.83 13H20v-2z" fill="currentColor"/>
  11.             </svg>
  12.             {{ "title.overview.list.header"|trans }}
  13.         </a>
  14.     </div>
  15.     <div class="flex max-w-screen-xl mx-auto mt-2 bg-white gap-x-4 gap-y-1 min-h-[calc(100%-15.75rem)] mb-12">
  16.         <div class="w-[21%]">
  17.             <div class="sticky top-0 overflow-hidden border rounded-lg shadow-sm">
  18.                 {{ render(controller('App\\View\\Controller\\NavigationController::sidebarNavigationAction', {request: app.request })) }}
  19.             </div>
  20.         </div>
  21.         <div class="w-[49%]">
  22.             <section class="border rounded-lg shadow-sm bg-mono-50">
  23.                 {% block content %}
  24.                 {% endblock %}
  25.             </section>
  26.         </div>
  27.         <div class="w-[30%]">
  28.             <aside class="sticky top-0 overflow-hidden border rounded-lg shadow-sm bg-white scrollbar scrollbar-thumb-gray-400 scrollbar-thin scrollbar-track-gray-100 max-h-[calc(100vh)] overflow-y-auto">
  29.                 {% block help_for_section %}
  30.                     <div class="w-full Help-Text Help-Text_section markdown">
  31.                         <h1>
  32.                             Help for this section
  33.                         </h1>
  34.                         <p>
  35.                             Help! Anybody?
  36.                         </p>
  37.                     </div>
  38.                 {% endblock %}
  39.                 <div>
  40.                     {% block help_for_metadata %}
  41.                     {% endblock %}
  42.                 </div>
  43.             </aside>
  44.         </div>
  45.     </div>
  46. {% endblock %}