Custom error page

This commit is contained in:
Thomas 2019-08-22 19:09:49 +02:00
parent 5ad051cfbb
commit fe3dcfdc4f
5 changed files with 59 additions and 2 deletions

View file

@ -9,6 +9,7 @@ html, body {
#main_contain {
overflow:auto;
padding-bottom:150px;
padding-top: 80px;
}
.footer {
position: relative;

View file

@ -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>

View 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 %}

View 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 %}

View file

@ -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>