2016-12-14 07:56:01 -08:00
|
|
|
@extends('layouts/basic')
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-12-14 07:56:01 -08:00
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
|
|
|
System Unavailable
|
|
|
|
@parent
|
|
|
|
@stop
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-12-14 07:56:01 -08:00
|
|
|
{{-- Page content --}}
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-12-14 07:56:01 -08:00
|
|
|
@section('content')
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
|
2017-10-28 07:01:45 -07:00
|
|
|
<style>
|
|
|
|
p {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
</style>
|
2016-12-14 07:56:01 -08:00
|
|
|
<div class="row">
|
2017-10-28 07:01:45 -07:00
|
|
|
<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">
|
|
|
|
<h3><i class="icon fa fa-warning"></i> System Unavailable</h3>
|
|
|
|
<p>{!! json_decode(file_get_contents(storage_path('framework/down')), true)['message'] !!}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-12-14 07:56:01 -08:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@stop
|