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

Open in your IDE?
  1. {% extends '@HitsoCommon/layout.html.twig' %}
    
    {% block stylesheets %}
        {{ parent() }}
        <link rel="stylesheet" href="{{ asset('bundles/hitsocommon/hitsox-default-theme/source/css/exception-critical.css') }}">
        <link rel="preload" as="style"
              href="{{ preload(asset('bundles/hitsocommon/hitsox-default-theme/source/css/exception.css'), { as: 'style' }) }}">
    
    {% endblock %}
    
    {% block content %}
        <main class="main">
            <section class="exception">
                <div class="exception__header">
                    <a href="./" class="exception__logo">
                        <img class="exception__logo-img" src="{{ asset('bundles/hitsocommon/hitsox-default-theme/img/layout/logo.svg') }}" alt="{{ code }}" />
                    </a>
                </div>
    
                <div class="section--center">
                    <h1 class="exception__title section-title section-title--h1">
                        {{ code }}
                    </h1>
    
                    <p class="exception__lead section-lead">
                        {{ 'Nie znaleziono adresu'|trans }}
                    </p>
    
                    <a href="/" class="btn btn--primary">{{ 'Wróć do strony głównej'|trans }}</a>
                </div>
            </section>
        </main>
    {% endblock %}
    
    {% block header %}
    
    {% endblock %}
    
    {% block footer_javascripts %}
    {#    <script src="{{ asset('bundles/hitsocommon/hitsox-default-theme/source/js/exception_in.js') }}" defer></script>#}
    {% endblock %}