templates/bundles/TwigBundle/Exception/error404.en.html.twig line 1

  1. {% extends 'foundation/front/front.html.twig' %}
    {% block front %}
        <div id="page-not-found">
            <div class="container-not-found">
                <h1 class="title-not-found">Oops!</h1>
                <img src="{{ asset('/images/defaults/404.jpg') }}" alt="404 Error" class="image-not-found">
                <h2 class="sub-title">PAGE NOT FOUND</h2>
                <p class="description-not-fount">Sorry, the page you're looking for doesn't exist.<br>
                    If you think somethin is broken, report a problem.</p>
                <div class="buttons-not-found">
                    <a href="{{ path('app_home') }}" class="btn-not-found dark">GO HOME</a>
                </div>
            </div>
        </div>
    
    
    {% endblock %}