Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/themefisher/navigator-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsomratpro <abdulmonnafsomrat@gmail.com>2020-10-18 10:19:01 +0300
committersomratpro <abdulmonnafsomrat@gmail.com>2020-10-18 10:19:01 +0300
commit0f71f879bf82227838beb84d6b072c53e94db9fd (patch)
tree6f629b235aa830591d9dcb572d5f445d1c5329b2
parente59fbf7089e46dc80c0b3828978a2ae6371b9932 (diff)
added js-cookies
-rw-r--r--exampleSite/config.toml7
-rw-r--r--layouts/partials/footer.html43
2 files changed, 49 insertions, 1 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 16bf2bd..2da134f 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -106,7 +106,6 @@ weight = 2
languageCode = "en-us"
title = "Example site multi-language"
dateFormat = "January 2, 2006"
-
home = "EN Home"
logo = "images/logo.png"
menufixed = false
@@ -117,6 +116,12 @@ footerQuicklinkTitle = "Quicklinks"
footerAboutTitle = "About"
footerSubscribeTitle = "Subscribe"
+
+# cookies
+[params.cookies]
+enable = true
+expire_days = 2
+
# Hero Area Section
[Languages.en.params.hero]
enable = true
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 9be2cae..dc9661c 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -71,3 +71,46 @@
{{ "<!-- Main Script -->" | safeHTML }}
{{ $script := resources.Get "js/script.js" | minify}}
<script src="{{ $script.Permalink }}"></script>
+
+<!-- cookie -->
+{{ if site.Params.cookies.enable }}
+<script src="https://cdnjs.cloudflare.com/ajax/libs/js-cookie/2.2.1/js.cookie.min.js"></script>
+<div id="js-cookie-box" class="cookie-box cookie-box-hide">
+ This site uses cookies. By continuing to use this website, you agree to their use. <span id="js-cookie-button" class="btn btn-sm btn-outline-primary ml-2">I Accept</span>
+</div>
+<script>
+ (function ($) {
+ const cookieBox = document.getElementById('js-cookie-box');
+ const cookieButton = document.getElementById('js-cookie-button');
+ if (!Cookies.get('cookie-box')) {
+ cookieBox.classList.remove('cookie-box-hide');
+ cookieButton.onclick = function () {
+ Cookies.set('cookie-box', true, {
+ expires: {{ site.Params.cookies.expire_days }}
+ });
+ cookieBox.classList.add('cookie-box-hide');
+ };
+ }
+ })(jQuery);
+</script>
+
+<!-- cookie style -->
+<style>
+.cookie-box {
+ position: fixed;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ text-align: center;
+ z-index: 9999;
+ padding: 1rem 2rem;
+ background: rgb(71, 71, 71);
+ transition: all .75s cubic-bezier(.19, 1, .22, 1);
+ color: #fdfdfd;
+}
+
+.cookie-box-hide {
+ display: none;
+}
+</style>
+{{ end }} \ No newline at end of file