diff options
author | Fbenas <philbeansburton@gmail.com> | 2020-06-19 02:16:51 +0100 |
---|---|---|
committer | Fbenas <philbeansburton@gmail.com> | 2020-06-19 02:16:51 +0100 |
commit | d1fe4536cc039450b540104e382db0d01d5cf886 (patch) | |
tree | fd40ab48f79370541f377b59bb381811126485ad /resources/views/layout/default.blade.php | |
parent | c83e876693bdb71c66418c13f5e09dfdaef24478 (diff) |
Initial commit
Diffstat (limited to 'resources/views/layout/default.blade.php')
-rw-r--r-- | resources/views/layout/default.blade.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/resources/views/layout/default.blade.php b/resources/views/layout/default.blade.php new file mode 100644 index 0000000..f39de87 --- /dev/null +++ b/resources/views/layout/default.blade.php @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + @include('layout.partial.head') +</head> + +<body> + @include('layout.partial.nav') + + @include('layout.partial.header') + + @yield('content') + + @include('layout.partial.footer') + + @include('layout.partial.footer-scripts') +</body> + +</html>
\ No newline at end of file |