src/Hitso/Bundle/CommonBundle/Resources/views/Front/Exception/404.html.twig line 1

Open in your IDE?
  1. {% extends 'HitsoCommonBundle::layout.html.twig' %}
  2. {% block stylesheets %}
  3.     {{ parent() }}
  4.     <link rel="stylesheet" href="{{ asset('bundles/hitsocommon/hitsox-default-theme/source/css/exception-critical.css') }}">
  5.     <link rel="preload" as="style"
  6.           href="{{ preload(asset('bundles/hitsocommon/hitsox-default-theme/source/css/exception.css'), { as: 'style' }) }}">
  7. {% endblock %}
  8. {% block content %}
  9.     <main class="main">
  10.         <section class="exception">
  11.             <div class="exception__header">
  12.                 <a href="./" class="exception__logo">
  13.                     <img class="exception__logo-img" src="{{ asset('bundles/hitsocommon/hitsox-default-theme/img/layout/logo.svg') }}" alt="{{ code }}" />
  14.                 </a>
  15.             </div>
  16.             <div class="section--center">
  17.                 <h1 class="exception__title section-title section-title--h1">
  18.                     {{ code }}
  19.                 </h1>
  20.                 <p class="exception__lead section-lead">
  21.                     {{ 'Nie znaleziono adresu'|trans }}
  22.                 </p>
  23.                 <a href="/" class="btn btn--primary">{{ 'Wróć do strony głównej'|trans }}</a>
  24.             </div>
  25.         </section>
  26.     </main>
  27. {% endblock %}
  28. {% block header %}
  29. {% endblock %}
  30. {% block footer_javascripts %}
  31. {#    <script src="{{ asset('bundles/hitsocommon/hitsox-default-theme/source/js/exception_in.js') }}" defer></script>#}
  32. {% endblock %}