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

24 lines
442 B
PHP
Raw Normal View History

2023-08-14 21:51:16 +00:00
<!DOCTYPE html>
2023-07-28 22:45:33 +00:00
<html lang="en">
<head>
@include('includes.head-hljs')
</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>