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

61 lines
2.3 KiB
Twig
Raw Normal View History

2015-06-21 08:09:10 -05:00
<!DOCTYPE html>
<html>
<head>
2017-02-11 09:32:03 -06:00
<meta charset="UTF-8">
2017-09-30 10:56:51 -05:00
<meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
2017-02-11 09:32:03 -06:00
<title>404</title>
<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') }}/">
{# 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"/>
{# 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 #}
<link href="v1/css/firefly.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
2017-02-11 09:32:03 -06:00
{% include('partials.favicons') %}
2015-06-21 08:09:10 -05:00
</head>
2017-02-11 09:32:03 -06:00
<body class="ff-error-page">
<div class="ff-error-box">
<div class="login-logo">
<a href="{{ route('index') }}"><s><b>Firefly</b>III</s> <span class="text-danger">404</span></a>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h3 class="text-info">404 &mdash; Firefly III cannot find this page.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<p class="text-danger">
The page you have requested does not exist. Please check that you have not entered
the wrong URL. Did you make a typo perhaps?
</p>
2019-07-31 23:22:07 -05:00
<p>
If you were redirected to this page automatically, please accept my apologies.
There is a mention of this error in your log files and I would be grateful if you sent
me the error to me.
</p>
2017-02-11 09:32:03 -06:00
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<p>
If you are sure this page should exist, please open a ticket on
2018-01-12 11:42:48 -06:00
<strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.
2017-02-11 09:32:03 -06:00
</p>
</div>
</div>
2015-06-21 08:09:10 -05:00
</div>
2017-02-11 09:32:03 -06:00
2015-06-21 08:09:10 -05:00
</body>
2017-02-16 15:33:32 -06:00
</html>