templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}NDP{% endblock %}</title>
  6.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22https://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  7.         {% block stylesheets %}
  8.             {{ encore_entry_link_tags('app') }}
  9.         {% endblock %}
  10.         {% block javascripts %}
  11.             {{ encore_entry_script_tags('app') }}
  12.         {% endblock %}
  13.     </head>
  14.     <body>
  15.         {# Navbar #}
  16.         {% include "partials/_navbar.html.twig" %}
  17.         {# Header #}
  18.         <section class="header">
  19.              <div class="container">
  20.                 <div class="row">
  21.                     <div class="col-12 d-flex">
  22.                         <div style="flex: 1;">
  23.                             {# Heading #}
  24.                             <div class="heading d-flex" style="align-items: center;">
  25.                                 <div style="flex: 1;"><h1 style="font-weight: 700;" class="d-flex align-items-center">{% block heading %}{% endblock %}</h1></div>
  26.                                 {% block heading_action %}{% endblock %}
  27.                             </div>
  28.                             {# Breadcrumb #}
  29.                             {% if no_breadcrumb is not defined %}
  30.                                 <nav class="mb-5" aria-label="breadcrumb">
  31.                                     <ol class="breadcrumb">
  32.                                         <li class="breadcrumb-item"><a href="{{ path('main') }}"><i class="fas fa-home"></i></a></li>
  33.                                         {% block breadcrumb %}{% endblock %}
  34.                                     </ol>
  35.                                 </nav>
  36.                             {% endif %}
  37.                         </div>
  38.                         {% block header_right %}{% endblock %}
  39.                     </div>
  40.                 </div>
  41.             </div>
  42.             
  43.         </section>
  44.         {# Main #}
  45.         <section class="main">
  46.             <div class="container">
  47.                 {% include "partials/_flashbag.html.twig" %}
  48.                 {% block body %}{% endblock %}
  49.             </div>
  50.         </section>
  51.         {# Footer #}
  52.         {% include "partials/_footer.html.twig" %}
  53.     </body>
  54. </html>