16 lines
714 B
Twig
16 lines
714 B
Twig
|
{% extends 'base.html.twig' %}
|
||
|
{% block title %}Error {{ status_code }} {{ status_text }}{% endblock title %}
|
||
|
{% block body %}
|
||
|
|
||
|
<p class="uk-margin-remove-top uk-text-center uk-404 uk-doughnut">
|
||
|
4<span class="uk-spin uk-background-cover uk-inline"></span>3
|
||
|
</p>
|
||
|
<div class="uk-width-1-1">
|
||
|
<hr class="uk-divider-icon" />
|
||
|
<p class="uk-text-center uk-text-lead">
|
||
|
So it turns out I can't give you access to this page. Sorry about that.
|
||
|
</p>
|
||
|
<p class="uk-text-center uk-text-large">The best I can do is redirect you to the <a href="{{ path('sikofitt_doughnutwedding_default_index') }}" title="Home page">home</a> page.</p>
|
||
|
</div>
|
||
|
|
||
|
{% endblock body %}
|