mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
c8b6f622f4
- To display license info along with shortcuts. - Extracted out plain layout from 503 error page. - Added tests to ensure license references are as expected.
12 lines
408 B
PHP
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 |