BookStack/resources/views/errors/503.blade.php

30 lines
1009 B
PHP
Raw Normal View History

<!DOCTYPE html>
<html lang="{{ config('app.lang') }}"
dir="{{ config('app.rtl') ? 'rtl' : 'ltr' }}">
<head>
<title>{{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name') }}</title>
2015-07-12 19:01:42 +00:00
<!-- Meta -->
<meta name="viewport" content="width=device-width">
<meta charset="utf-8">
2015-07-12 19:01:42 +00:00
<!-- Styles and Fonts -->
<link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
<link rel="stylesheet" media="print" href="{{ versioned_asset('dist/print-styles.css') }}">
<!-- Custom Styles & Head Content -->
@include('common.custom-styles')
@include('common.custom-head')
</head>
<body>
<div id="content" class="block">
<div class="container small mt-xl">
<div class="card content-wrap auto-height">
<h1 class="list-heading">{{ trans('errors.app_down', ['appName' => setting('app-name')]) }}</h1>
<p>{{ trans('errors.back_soon') }}</p>
</div>
2017-08-26 13:53:23 +00:00
</div>
</div>
</body>
</html>