contest-site/source/_layouts/master.blade.php

24 lines
369 B
PHP
Raw Normal View History

2017-06-30 07:37:16 +03:00
<!doctype html>
<html>
@include('_partial.head')
<body>
@include('_partial.nav')
2017-07-04 19:54:54 +03:00
<div class="container">
<div class="row">
<div class="col-12">
<main>
<h1>{{ $page->title }}</h1>
@yield('contents')
</main>
</div>
</div>
</div>
2017-06-30 07:37:16 +03:00
@include('_partial.footer')
</body>
</html>