-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
353fe63
commit 276501e
Showing
4 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{# | ||
# This file is part of Bileto. | ||
# Copyright 2022-2023 Probesys | ||
# SPDX-License-Identifier: AGPL-3.0-or-later | ||
#} | ||
|
||
{% extends 'base.html.twig' %} | ||
|
||
{% block title %}{{ 'errors.generic.title' | trans }}{% endblock %} | ||
|
||
{% block body %} | ||
<main class="layout__body wrapper wrapper--small wrapper--center flow flow--large"> | ||
<h1>{{ 'errors.generic.title' | trans }}</h1> | ||
|
||
<div class="text--center flow flow--large"> | ||
<p class="text--big"> | ||
{{ 'errors.generic.description' | trans }} | ||
</p> | ||
|
||
<p> | ||
{{ 'errors.generic.sorry' | trans }} | ||
</p> | ||
|
||
<p> | ||
<a class="anchor--action" href="{{ path('home') }}"> | ||
{{ 'errors.back_home' | trans }} | ||
</a> | ||
</p> | ||
</div> | ||
</main> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{# | ||
# This file is part of Bileto. | ||
# Copyright 2022-2023 Probesys | ||
# SPDX-License-Identifier: AGPL-3.0-or-later | ||
#} | ||
|
||
{% extends 'base.html.twig' %} | ||
|
||
{% block title %}{{ 'errors.404.title' | trans }}{% endblock %} | ||
|
||
{% block body %} | ||
<main class="layout__body wrapper wrapper--small wrapper--center flow flow--large"> | ||
<h1>{{ 'errors.404.title' | trans }}</h1> | ||
|
||
<div class="text--center flow flow--large"> | ||
<p class="text--big"> | ||
{{ 'errors.404.description' | trans }} | ||
</p> | ||
|
||
<p> | ||
<a class="anchor--action" href="{{ path('home') }}"> | ||
{{ 'errors.back_home' | trans }} | ||
</a> | ||
</p> | ||
</div> | ||
</main> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters