BookStack/resources/views/errors/503.blade.php
Dan Brown c8b6f622f4
Added help/about box to wysiwyg editor
- To display license info along with shortcuts.
- Extracted out plain layout from 503 error page.
- Added tests to ensure license references are as expected.
2022-02-07 23:19:04 +00:00

12 lines
408 B
PHP

@extends('layouts.plain')
@section('content')
<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>
</div>
</div>
@endsection