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

48 lines
1.6 KiB
Twig
Raw Normal View History

2020-06-05 18:40:02 +02:00
<!DOCTYPE html>
<html>
2015-06-27 08:06:24 +02:00
<head>
2020-06-05 18:40:02 +02:00
<meta charset="UTF-8">
<meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
<title>Firefly III Maintenance Mode</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') }}/">
2016-11-24 19:26:47 +01:00
2020-06-05 18:40:02 +02:00
{# libraries #}
<link href="v1/lib/bs/css/bootstrap.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
2016-11-24 19:26:47 +01:00
2020-06-05 18:40:02 +02:00
{# 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"/>
2020-06-05 18:40:02 +02:00
{# Firefly III customisations #}
<link href="v1/css/error.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
2015-06-27 08:06:24 +02:00
2020-06-05 18:40:02 +02:00
{# favicons #}
{% include('partials.favicons') %}
2015-06-27 08:06:24 +02:00
</head>
2020-06-05 18:40:02 +02:00
<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><a href="{{ route('index') }}"><b>Firefly</b>III</a></h1>
</div>
</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">{{ trans('errors.maintenance_mode') }}</h3>
</div>
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
2016-02-06 19:06:10 +01:00
<p>
2020-06-05 18:40:02 +02:00
{{ trans('errors.be_right_back') }}
</p>
<p class="text-danger">
2020-05-27 17:42:19 +02:00
{{ trans('errors.check_back') }}
2016-02-06 19:06:10 +01:00
</p>
2015-06-27 08:06:24 +02:00
</div>
</div>
</body>
</html>