summaryrefslogtreecommitdiff
path: root/resources/views/layout
diff options
context:
space:
mode:
authorFbenas <philbeansburton@gmail.com>2020-06-19 02:16:51 +0100
committerFbenas <philbeansburton@gmail.com>2020-06-19 02:16:51 +0100
commitd1fe4536cc039450b540104e382db0d01d5cf886 (patch)
treefd40ab48f79370541f377b59bb381811126485ad /resources/views/layout
parentc83e876693bdb71c66418c13f5e09dfdaef24478 (diff)
Initial commit
Diffstat (limited to 'resources/views/layout')
-rw-r--r--resources/views/layout/default.blade.php20
-rw-r--r--resources/views/layout/partial/footer-scripts.blade.php0
-rw-r--r--resources/views/layout/partial/footer.blade.php0
-rw-r--r--resources/views/layout/partial/head.blade.php13
-rw-r--r--resources/views/layout/partial/header.blade.php0
-rw-r--r--resources/views/layout/partial/nav.blade.php0
6 files changed, 33 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
diff --git a/resources/views/layout/partial/footer-scripts.blade.php b/resources/views/layout/partial/footer-scripts.blade.php
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/resources/views/layout/partial/footer-scripts.blade.php
diff --git a/resources/views/layout/partial/footer.blade.php b/resources/views/layout/partial/footer.blade.php
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/resources/views/layout/partial/footer.blade.php
diff --git a/resources/views/layout/partial/head.blade.php b/resources/views/layout/partial/head.blade.php
new file mode 100644
index 0000000..1b63459
--- /dev/null
+++ b/resources/views/layout/partial/head.blade.php
@@ -0,0 +1,13 @@
+<meta charset="utf-8">
+
+<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+<meta name="description" content="Rugby">
+<meta name="author" content="Phil Burton">
+
+<title>Rugby</title>
+
+<!-- Bootstrap core CSS -->
+
+
+<!-- Custom styles for this template -->
+<link href="/css/app.css" rel="stylesheet"> \ No newline at end of file
diff --git a/resources/views/layout/partial/header.blade.php b/resources/views/layout/partial/header.blade.php
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/resources/views/layout/partial/header.blade.php
diff --git a/resources/views/layout/partial/nav.blade.php b/resources/views/layout/partial/nav.blade.php
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/resources/views/layout/partial/nav.blade.php