aboutsummaryrefslogtreecommitdiff
path: root/resources/views/layouts/default.blade.php
blob: 715481e20649f3e85421a032b784fa89746148d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
    @include('includes.head')
</head>

<body>
<div class="page">
<div class="header">
    @include('includes.header')
</div> <!-- header -->

<div id="pagebody">
    <div id="content" role="main">
@yield('content')
    </div> <!-- content -->
    <div id="footer" class="pagefooter">
        @include('includes.footer')
    </div> <!-- footer -->
</div> <!-- pagebody -->
</div> <!-- page -->
</body>
</html>