diskfloppy.me/resources/views/layouts/default.blade.php

28 lines
463 B
PHP
Raw Normal View History

2023-06-13 22:07:20 +00:00
<!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>