firefly-iii/resources/views/errors/404.twig
2021-09-04 07:32:25 +02:00

45 lines
1.3 KiB
Twig

<!DOCTYPE html>
<html>
<head>
<base href="{{ route('index') }}/">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Firefly III | 404</title>
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<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 }}">
</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">
<h3><span class="fas fa-question-circle text-info"></span> 404 - Page not found</h3>
<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>