From 28b60f30e232dc3e987091faca6f379a2ada8426 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 9 Sep 2019 20:23:04 +0200 Subject: [PATCH] wait #2745 --- resources/views/head/head.blade.php | 1 + .../views/privacy/cookies-consent.blade.php | 31 +++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 resources/views/privacy/cookies-consent.blade.php diff --git a/resources/views/head/head.blade.php b/resources/views/head/head.blade.php index 9e238fa..49bafc5 100644 --- a/resources/views/head/head.blade.php +++ b/resources/views/head/head.blade.php @@ -4,6 +4,7 @@ @include('cubist::head.pwa') @favicon @stack('stylesheets') +@stack('styles') @include('googletagmanager::head') @include('gtag::head') \ No newline at end of file diff --git a/resources/views/privacy/cookies-consent.blade.php b/resources/views/privacy/cookies-consent.blade.php new file mode 100644 index 0000000..3c19a77 --- /dev/null +++ b/resources/views/privacy/cookies-consent.blade.php @@ -0,0 +1,31 @@ +@if(!isset($_COOKIE['privacy-cookie-consent']) || $_COOKIE['privacy-cookie-consent']!='1') + + + +@endif \ No newline at end of file -- 2.39.5