templates/glossary.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block title %}
  3. {% if app.request.locale == 'nl' %}{{ glossary.titlenl }}{% else %}{{ glossary.titleen }}{% endif %}
  4. {% endblock %}
  5. {% block body %}
  6.         <p>&nbsp;</p>
  7.         <div class="row flex-md-row h-md-250 position-relative">
  8.           <div class="col-md-9 position-static">
  9.             <!-- Start Page Content -->
  10.             <div class="title">
  11.               <h2>{% if app.request.locale == 'nl' %}{{ glossary.titlenl }}{% else %}{{ glossary.titleen }}{% endif %}</h2>
  12.             </div>
  13.             <div class="glossary">
  14.               <p><div class="intro">
  15.                 {% if app.request.locale == 'nl' %}{{ glossary.intronl|raw }}{% else %}{{ glossary.introen|raw }}{% endif %}
  16.               </div></p>
  17.               {% if app.request.locale == 'nl' %}{{ glossary.textnl|raw }}{% else %}{{ glossary.texten|raw }}{% endif %}
  18.             </div>
  19.             <!-- End Page Content -->
  20.           </div>
  21.           {% embed 'sidebar.html.twig' %}
  22.             {% block elements %}
  23.             <h3>{{ 'Feedback'|trans }}</h3>
  24.             <div class="w-100 text-center">
  25.               {{ 'Mist er iets op deze pagina? Of klopt er iets aan de tekst? Meld het ons.'|trans }}
  26.               <p class="card-text"><a href="{{ path('glossary_review_add',{ 'id' : glossary.id }) }}"><button type="button" class="btn btn-paleontica">{{ 'Geef feedback'|trans }}</button></a></p>
  27.             </div>
  28.             <p></p>
  29.             {% endblock %}
  30.           {% endembed %}
  31.         </div>
  32. {% endblock %}
  33. {% block javascript %}
  34. <script>
  35.     $(document).ready(function() {
  36.         $("img").addClass("img-fluid");
  37. });
  38. </script>
  39. {% endblock %}