Files
firefly-iii/resources/views/v1/errors/404.twig

57 lines
1.9 KiB
Twig
Raw Normal View History

2015-06-21 15:09:10 +02:00
<!DOCTYPE html>
<html>
<head>
2017-02-11 16:32:03 +01:00
<meta charset="UTF-8">
2017-09-30 17:56:51 +02:00
<meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
2020-06-05 18:40:02 +02:00
<title>Firefly III 404 :(</title>
2017-02-11 16:32:03 +01:00
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
<base href="{{ route('index') }}/">
2020-06-05 18:40:02 +02:00
{# CSS things #}
{# libraries #}
<link href="v1/lib/bs/css/bootstrap.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
<link href="v1/lib/fa/css/font-awesome.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
2020-06-05 18:40:02 +02:00
<link href="v1/css/daterangepicker.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
{# the theme #}
<link href="v1/lib/adminlte/css/AdminLTE.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
<link href="v1/lib/adminlte/css/skins/skin-blue-light.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
{# Firefly III customisations #}
2020-06-05 18:40:02 +02:00
<link href="v1/css/error.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
2020-06-05 18:40:02 +02:00
{# favicons #}
2017-02-11 16:32:03 +01:00
{% include('partials.favicons') %}
2020-06-05 18:40:02 +02:00
</head>
<body class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
<h1><s><b>Firefly</b>III</s> 404 Not Found :(</h1>
2017-02-11 16:32:03 +01:00
</div>
2020-06-05 18:40:02 +02:00
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
<h3 class="text-info">404 &mdash; {{ trans('errors.404_header') }}</h3>
2017-02-11 16:32:03 +01:00
</div>
2020-06-05 18:40:02 +02:00
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
<p>
{{ trans('errors.404_page_does_not_exist') }}
</p>
<p>
{{ trans('errors.404_send_error') }}
</p>
<p>
{{ trans('errors.404_github_link')|raw }}
</p>
2017-02-11 16:32:03 +01:00
</div>
2015-06-21 15:09:10 +02:00
</div>
2017-02-11 16:32:03 +01:00
2020-06-05 18:40:02 +02:00
2015-06-21 15:09:10 +02:00
</body>
2017-02-16 22:33:32 +01:00
</html>