40 lines
873 B
PHP
Raw Normal View History

2018-08-04 18:05:37 +03:00
@stack('content_start')
2017-09-14 22:21:00 +03:00
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
2018-08-04 18:05:37 +03:00
@stack('content_wrapper_start')
2017-09-14 22:21:00 +03:00
<!-- Content Header (Page header) -->
<section class="content-header content-center">
2018-08-04 18:05:37 +03:00
@stack('content_header_start')
2017-09-14 22:21:00 +03:00
<h1>
@yield('title')
@yield('new_button')
</h1>
2018-08-04 18:05:37 +03:00
@stack('content_header_end')
2017-09-14 22:21:00 +03:00
</section>
<!-- Main content -->
<section class="content content-center">
@include('flash::message')
2018-08-04 18:05:37 +03:00
@stack('content_content_start')
2017-09-14 22:21:00 +03:00
@yield('content')
2018-08-04 18:05:37 +03:00
@stack('content_content_start')
2017-09-14 22:21:00 +03:00
</section>
<!-- /.content -->
2018-08-04 18:05:37 +03:00
@stack('content_wrapper_end')
2017-09-14 22:21:00 +03:00
</div>
<!-- /.content-wrapper -->
<script type="text/javascript">
$('div.alert').not('.alert-important').delay(3000).fadeOut(350);
</script>
2018-08-04 18:05:37 +03:00
@stack('content_end')