templates/layout/docs.twig line 1

  1. {% extends 'layout/default.twig' %}
  2. {% block main %}
  3.     <div id="sidebar">
  4.         {# SEARCH FORM #}
  5.         <form action="/search" method="get" id="search-form">
  6.             <input type="search" aria-label="Search" name="query" placeholder="Search by error message" value="{{ query ?? '' }}">
  7.             <button type="submit">Go</button>
  8.         </form>
  9.         {# SIDEBAR NAVIGATION #}
  10.         <nav id="navigation">
  11.             {% for group in navigation %}
  12.                 <h3>{{ group.title }}</h3>
  13.                 <ul>
  14.                     {% for pageId in group.pageIds %}
  15.                     <li><a href="{{ path('compatibility_view', {page: pageId.value}) }}">{{ pageId.shortTitle }}</a></li>
  16.                     {% endfor %}
  17.                 </ul>
  18.             {% endfor %}
  19.         </nav>
  20.     </div>
  21.     <article id="content">
  22.         {% block content %}{% endblock %}
  23.     </article>
  24. {% endblock %}