mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 05:31:48 +02:00
Custom error page
This commit is contained in:
parent
5ad051cfbb
commit
fe3dcfdc4f
5 changed files with 59 additions and 2 deletions
|
@ -9,6 +9,7 @@ html, body {
|
|||
#main_contain {
|
||||
overflow:auto;
|
||||
padding-bottom:150px;
|
||||
padding-top: 80px;
|
||||
}
|
||||
.footer {
|
||||
position: relative;
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<meta property="og:url" content="https://plan.fedilab.app" />
|
||||
<meta property="og:image" content="{{ app.request.getSchemeAndHttpHost() ~ asset('img/FediPlan.png') }}" />
|
||||
|
||||
<title>{% block title %}{{ rss_feed_title }}{% endblock %}</title>
|
||||
<title>{% block title %}{% endblock %}</title>
|
||||
<link rel="stylesheet" href="{{ asset('css/style.css') }}">
|
||||
{% block stylesheets %}
|
||||
<link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}">
|
||||
|
@ -34,7 +34,7 @@
|
|||
|
||||
<body>
|
||||
<div id="wrap">
|
||||
<div class="container" id="main_container" id="main_contain">
|
||||
<div class="container" id="main_contain">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
27
templates/bundles/TwigBundle/Exception/error404.html.twig
Normal file
27
templates/bundles/TwigBundle/Exception/error404.html.twig
Normal file
|
@ -0,0 +1,27 @@
|
|||
{% extends 'base.html.twig' %}
|
||||
{% trans_default_domain 'fediplan' %}
|
||||
{% block title %}{{ 'common.about'|trans }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% include 'nav.html.twig' %}
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12" style="text-align: center;line-height: normal;margin-top: 100px;"> <pre>
|
||||
██╗ ██╗ ██████╗ ██╗ ██╗
|
||||
██║ ██║██╔═████╗██║ ██║
|
||||
███████║██║██╔██║███████║
|
||||
╚════██║████╔╝██║╚════██║
|
||||
██║╚██████╔╝ ██║
|
||||
╚═╝ ╚═════╝ ╚═╝
|
||||
|
||||
</pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12" style="text-align: center">
|
||||
--> <a href="{{ path('index') }}">200</a> <--
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
26
templates/bundles/TwigBundle/Exception/error500.html.twig
Normal file
26
templates/bundles/TwigBundle/Exception/error500.html.twig
Normal file
|
@ -0,0 +1,26 @@
|
|||
{% extends 'base.html.twig' %}
|
||||
{% trans_default_domain 'fediplan' %}
|
||||
{% block title %}{{ 'common.about'|trans }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% include 'nav.html.twig' %}
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12" style="text-align: center;line-height: normal;margin-top: 100px;"> <pre>
|
||||
███████╗ ██████╗ ██████╗
|
||||
██╔════╝██╔═████╗██╔═████╗
|
||||
███████╗██║██╔██║██║██╔██║
|
||||
╚════██║████╔╝██║████╔╝██║
|
||||
███████║╚██████╔╝╚██████╔╝
|
||||
╚══════╝ ╚═════╝ ╚═════╝
|
||||
</pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12" style="text-align: center">
|
||||
--> <a href="{{ path('index') }}">200</a> <--
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
|
@ -41,6 +41,9 @@
|
|||
{% if route == "app_fediplan_about" %}
|
||||
{% set route = "about" %}
|
||||
{% endif %}
|
||||
{% if route | length < 5 %}
|
||||
{% set route = "index" %}
|
||||
{% endif %}
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'en' }) }}">English</a>
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'fr' }) }}">Français</a>
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'de' }) }}">Deutsch</a>
|
||||
|
|
Loading…
Add table
Reference in a new issue