blob: 0945b9cae164777d0604e27513df305cdbeb3048 (
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="setSchemeSelector()">
<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>
|