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

45 lines
1.3 KiB
Twig
Raw Normal View History

2021-04-03 20:51:19 +02:00
<!DOCTYPE html>
<html>
<head>
<base href="{{ route('index') }}/">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2021-09-04 07:32:25 +02:00
<title>Firefly III | 404</title>
2021-04-03 20:51:19 +02:00
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
2021-04-08 12:10:04 +02:00
<link rel="stylesheet" href="v2/plugins/local-fonts/gf-source.css" nonce="{{ JS_NONCE }}">
<link rel="stylesheet" href="v2/css/app.css" nonce="{{ JS_NONCE }}">
2021-04-03 20:51:19 +02:00
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="error-page">
<h2 class="headline text-info">404</h2>
<div class="error-content">
2021-06-11 19:50:05 +02:00
<h3><span class="fas fa-question-circle text-info"></span> 404 - Page not found</h3>
2021-04-03 20:51:19 +02:00
<p>
{{ trans('errors.404_header') }}
</p>
<p>
{{ trans('errors.404_page_does_not_exist') }}
</p>
<p>
{{ trans('errors.404_send_error') }}
</p>
<p>
{{ trans('errors.404_github_link')|raw }}
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>