From 37d2b3ed3af202574ef2a8cb981490c4fbef2c5e Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Fri, 22 Feb 2019 15:18:18 +0100 Subject: [PATCH] #2609 @1 --- src/resources/views/body/begin.blade.php | 1 + src/resources/views/body/end.blade.php | 1 + src/resources/views/head/head.blade.php | 4 ++++ src/resources/views/head/link.blade.php | 0 4 files changed, 6 insertions(+) create mode 100644 src/resources/views/body/begin.blade.php create mode 100644 src/resources/views/body/end.blade.php create mode 100644 src/resources/views/head/head.blade.php create mode 100644 src/resources/views/head/link.blade.php diff --git a/src/resources/views/body/begin.blade.php b/src/resources/views/body/begin.blade.php new file mode 100644 index 0000000..5326205 --- /dev/null +++ b/src/resources/views/body/begin.blade.php @@ -0,0 +1 @@ +@include('googletagmanager::body') \ No newline at end of file diff --git a/src/resources/views/body/end.blade.php b/src/resources/views/body/end.blade.php new file mode 100644 index 0000000..f73fc45 --- /dev/null +++ b/src/resources/views/body/end.blade.php @@ -0,0 +1 @@ +@stack('scripts') \ No newline at end of file diff --git a/src/resources/views/head/head.blade.php b/src/resources/views/head/head.blade.php new file mode 100644 index 0000000..9932c7a --- /dev/null +++ b/src/resources/views/head/head.blade.php @@ -0,0 +1,4 @@ +@include('googletagmanager::head') +@include('cubist::head.meta') +@include('cubist::head.link') +@stack('stylesheets') \ No newline at end of file diff --git a/src/resources/views/head/link.blade.php b/src/resources/views/head/link.blade.php new file mode 100644 index 0000000..e69de29 -- 2.39.5