2021-03-01 09:56:10 +00:00
{% load i18n %}
{% load static %}
<!doctype html>
< html lang = "en" >
< head >
< title > UrlaubsAuktion - {% trans "Seite nicht gefunden" %}< / title >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width,initial-scale=1" >
< link rel = "icon" href = "{% static " frontend / images / favicon . png " % } " type = "image/x-icon" >
<!-- Google Fonts -->
< link href = "https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i%7CMerriweather:300,300i,400,400i,700,700i,900,900i" rel = "stylesheet" >
<!-- Bootstrap Stylesheet -->
2021-04-16 19:47:47 +00:00
< link rel = "stylesheet" href = "{% static " vendor / css / bootstrap . min4 . 2 . 1 . css " % } " >
< link rel = "stylesheet" type = "text/css" href = "{% static " vendor / css / bootstrap-reboot4 . 2 . 1 . css " % } " >
2021-03-01 09:56:10 +00:00
<!-- Sidebar Stylesheet -->
2021-04-16 19:47:47 +00:00
< link rel = "stylesheet" type = "text/css" href = "{% static " vendor / css / jquery . mCustomScrollbar . min . css " % } " >
2021-03-01 09:56:10 +00:00
<!-- Font Awesome Stylesheet -->
< link rel = "stylesheet" href = "{% static " frontend / css / font-awesome . min . css " % } " >
<!-- Custom Stylesheets -->
< link rel = "stylesheet" href = "{% static " frontend / css / style . css " % } " >
< link rel = "stylesheet" id = "cpswitch" href = "{% static " frontend / css / orange . css " % } " >
< link rel = "stylesheet" href = "{% static " frontend / css / responsive . css " % } " >
< / head >
< body >
<!-- ====== LOADER ===== -->
< div class = "loader" > < / div >
<!-- ======================== ERROR - PAGE - 2 ===================== -->
< section id = "error-page-2" class = "full-page-body full-page-back" >
< div class = "full-page-wrapper" >
< div class = "full-page-content" >
< div class = "container" >
< div class = "row" >
< div class = "col-md-12" >
< div class = "full-page-title d-lg-none" >
< h3 class = "company-name" > < span > < i class = "fa fa-plane" > < / i > Urlaubs< / span > Auktion< / h3 >
< / div > <!-- end full - page - title -->
< div class = "row" >
< div class = "col-12 col-md-12 col-lg-4 col-xl-4 error-page-2-circle text-center" >
< h2 > {{ error_code }}< / h2 >
< / div >
< div class = "col-12 col-md-12 col-lg-8 col-xl-8 error-page-2-text" >
< div class = "full-page-title d-none d-lg-block" >
< h3 class = "company-name text-left" > < span > < i class = "fa fa-plane" > < / i > Urlaubs< / span > Auktion< / h3 >
< / div > <!-- end full - page - title -->
< h2 > {% trans "Ein Fehler ist aufgetreten!" %}< / h2 >
< p > {% trans "Es tut uns leid," %}{% if error_code == 404 %}{% trans "diese Seite konnte nicht gefunden werden." %}{% else %}{% trans "es ist ein interner Fehler aufgetreten." %}{% endif %}< / p >
< p > {% trans "Wir werden diesen Fehler schnellstmöglich beheben. Bitte versuchen Sie es später nochmals." %}< / p >
< a href = "{% url " frontend:index " % } " class = "btn btn-orange" > {% trans "Zurück zur Startseite" %}< / a >
< / div >
< / div >
< / div > <!-- end columns -->
< / div > <!-- end row -->
< / div > <!-- end container -->
< / div > <!-- end full - page - content -->
< / div > <!-- end full - page - wrapper -->
< / section > <!-- end error - page - 2 -->
<!-- Page Scripts Starts -->
2021-04-16 19:47:47 +00:00
< script src = "{% static " vendor / js / jquery-3 . 3 . 1 . min . js " % } " > < / script >
< script src = "{% static " vendor / js / jquery . mCustomScrollbar . concat . min . js " % } " > < / script >
< script src = "{% static " vendor / js / bootstrap . min4 . 2 . 1 . js " % } " > < / script >
2021-03-01 09:56:10 +00:00
< script src = "{% static " frontend / js / custom-navigation . js " % } " > < / script >
<!-- Page Scripts Ends -->
< / body >
< / html >