aboutsummaryrefslogtreecommitdiff
path: root/resources/views/layouts/default.blade.php
blob: 77c3f76178b2a8a9d521699c59b73dc99f873144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">

<!-- HTTPS -->

<head>
    @include('includes.head')
</head>

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

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