mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
299ad681f7
Signed-off-by: snipe <snipe@snipe.net>
46 lines
750 B
PHP
46 lines
750 B
PHP
@extends('layouts/basic')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
System Unavailable
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
|
|
|
|
|
<style>
|
|
p {
|
|
font-size: 16px;
|
|
}
|
|
|
|
h3 {
|
|
padding-bottom: 10px;
|
|
}
|
|
</style>
|
|
<div class="row">
|
|
<div class="col-md-9 col-md-offset-1">
|
|
<div class="col-md-2">
|
|
<img src="{{ url('/') }}/img/sad-panda.png" class="pull-right" style="width: 140px; height: 140px;">
|
|
</div>
|
|
<div class="col-md-10">
|
|
<div class="callout callout-danger">
|
|
<h2><i class="icon fas fa-exclamation-triangle"></i> System Unavailable</h2>
|
|
<p>{!! json_decode(file_get_contents(storage_path('framework/down')), true)['message'] !!}</p>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
@stop
|