Files
faveo/resources/views/errors/offline.blade.php
2016-06-13 20:41:55 +05:30

15 lines
466 B
PHP

@extends('themes.default1.client.layout.client')
@section('content')
<div id="page" class="hfeed site">
<article class="hentry error404 text-center">
<h1 class="error-title"><i class="fa fa-frown-o text-info"></i></h1>
<h2 class="entry-title text-muted">{!! Lang::get('lang.the_board_is_offline') !!}</h2>
</article><!-- .hentry -->
</div><!-- #page -->
<script>
function goBack() {
window.history.back();
}
</script>
@stop