-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html.twig
39 lines (35 loc) · 1.23 KB
/
404.html.twig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{#
# This file is part of MedShakeST.
#
# Copyright (c) 2022
# Bertrand Boutillier <b.boutillier@gmail.com>
# http://www.medshake.net
#
# MedShakeST is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# MedShakeST is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with MedShakeST. If not, see <http://www.gnu.org/licenses/>.
#/
/##
# Template > page forbidden
#
# @author Bertrand Boutillier <b.boutillier@gmail.com>
#}
{% extends "page.html.twig" %}
{% block title %}Cette page n'existe pas{% endblock %}
{% block body %}
<div style="height: 85vh;" class="jumbotron d-flex align-items-center m-0">
<div class="container text-center text-danger">
<i class="fas fa-exclamation-circle fa-10x"></i><br>
<p class="h3 mt-3">Cette page semble ne pas exister !</p>
</div>
</div>
{% endblock %}