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

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