deactivated unused plugins
All checks were successful
Build and Deploy Hugo Site / buildAndDeploy (push) Successful in 1m42s

This commit is contained in:
Andreas Hnida 2024-04-18 13:34:51 +02:00
commit 99e790efa5
3 changed files with 32 additions and 34 deletions

View file

@ -31,7 +31,7 @@ copyright = "Designed & Developed by [Andreas Hnida](https://andreashnida.de) |
# Preloader # Preloader
# preloader module: https://github.com/gethugothemes/hugo-modules/tree/master/components/preloader # preloader module: https://github.com/gethugothemes/hugo-modules/tree/master/components/preloader
[preloader] [preloader]
enable = false enable = true
preloader = "" # use jpg, png, svg or gif format. preloader = "" # use jpg, png, svg or gif format.
# Navigation button # Navigation button
@ -55,10 +55,10 @@ show_categories = true
# seo meta data for OpenGraph / Twitter Card # seo meta data for OpenGraph / Twitter Card
# seo module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/basic-seo # seo module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/basic-seo
[metadata] [metadata]
keywords = ["Boilerplate", "Hugo"] keywords = ["VeruA", "SaaS", "Pflege", "Abrechnung", "Webseite", "Template", "Design", "Theme", "Hugo"]
description = "Hugo & Tailwindcss Starter" description = "VeruA ist ein SaaS-System für die Verwaltung und Abrechnung von Pflegeabrechnungen."
author = "zeon.studio" author = "Andreas Hnida"
image = "images/og-image.png" image = "images/verua_logo_w.png"
# site verifications # site verifications
@ -73,7 +73,7 @@ mastodon = "" # Your verification code
# cookies # cookies
# cookies module: https://github.com/gethugothemes/hugo-modules/tree/master/components/cookie-consent # cookies module: https://github.com/gethugothemes/hugo-modules/tree/master/components/cookie-consent
[cookies] [cookies]
enable = true enable = false
expire_days = 60 expire_days = 60
content = "Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen." content = "Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen."
button = "Verstanden" button = "Verstanden"

2
go.mod
View file

@ -5,7 +5,7 @@ go 1.20
require ( require (
github.com/gethugothemes/hugo-modules/accordion v0.0.0-20240207043320-fa42312441f5 // indirect github.com/gethugothemes/hugo-modules/accordion v0.0.0-20240207043320-fa42312441f5 // indirect
github.com/gethugothemes/hugo-modules/adsense v0.0.0-20240207043320-fa42312441f5 // indirect github.com/gethugothemes/hugo-modules/adsense v0.0.0-20240207043320-fa42312441f5 // indirect
github.com/gethugothemes/hugo-modules/components/cookie-consent v0.0.0-20240207043320-fa42312441f5 // indirect github.com/gethugothemes/hugo-modules/components/cookie-consent v0.0.0-20240417032207-612e47c108d7 // indirect
github.com/gethugothemes/hugo-modules/components/custom-script v0.0.0-20240207043320-fa42312441f5 // indirect github.com/gethugothemes/hugo-modules/components/custom-script v0.0.0-20240207043320-fa42312441f5 // indirect
github.com/gethugothemes/hugo-modules/components/preloader v0.0.0-20240207043320-fa42312441f5 // indirect github.com/gethugothemes/hugo-modules/components/preloader v0.0.0-20240207043320-fa42312441f5 // indirect
github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20240207043320-fa42312441f5 // indirect github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20240207043320-fa42312441f5 // indirect

View file

@ -1,36 +1,34 @@
// main script // main script
(function () { ;(function () {
"use strict"; 'use strict'
// Dropdown Menu Toggler For Mobile // Dropdown Menu Toggler For Mobile
// ---------------------------------------- // ----------------------------------------
const dropdownMenuToggler = document.querySelectorAll( const dropdownMenuToggler = document.querySelectorAll('.nav-dropdown > .nav-link')
".nav-dropdown > .nav-link",
);
dropdownMenuToggler.forEach((toggler) => { dropdownMenuToggler.forEach((toggler) => {
toggler?.addEventListener("click", (e) => { toggler?.addEventListener('click', (e) => {
e.target.closest(".nav-item").classList.toggle("active"); e.target.closest('.nav-item').classList.toggle('active')
}); })
}); })
// Testimonial Slider // Testimonial Slider
// ---------------------------------------- // ----------------------------------------
new Swiper(".testimonial-slider", { // new Swiper(".testimonial-slider", {
spaceBetween: 24, // spaceBetween: 24,
loop: true, // loop: true,
pagination: { // pagination: {
el: ".testimonial-slider-pagination", // el: ".testimonial-slider-pagination",
type: "bullets", // type: "bullets",
clickable: true, // clickable: true,
}, // },
breakpoints: { // breakpoints: {
768: { // 768: {
slidesPerView: 2, // slidesPerView: 2,
}, // },
992: { // 992: {
slidesPerView: 3, // slidesPerView: 3,
}, // },
}, // },
}); // });
})(); })()