From b1735c862ce1be2bee853918d67941cfd7334111 Mon Sep 17 00:00:00 2001 From: Andreas Hnida Date: Fri, 16 Feb 2024 08:29:40 +0000 Subject: [PATCH] impl. Keyfeatures auf Startseite --- TODO.todo | 1 + assets/scss/custom.scss | 24 +++++--- content/german/_index.md | 31 +++++++--- themes/hugoplate/layouts/index.html | 61 ++++++++----------- .../layouts/partials/essentials/style.html | 10 +-- 5 files changed, 69 insertions(+), 58 deletions(-) diff --git a/TODO.todo b/TODO.todo index acc3af2..5238ff9 100644 --- a/TODO.todo +++ b/TODO.todo @@ -1 +1,2 @@ TODO Cleanup content folder +TODO Verzeichnisstruktur final anpassen \ No newline at end of file diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss index 78653a0..b376f16 100755 --- a/assets/scss/custom.scss +++ b/assets/scss/custom.scss @@ -1,4 +1,5 @@ -// Custom Fonts + +/**************** Fonts ******************/ @font-face { font-family: "MontserratVar"; src: url( '../fonts/Montserrat-VariableFont_wght.ttf' ); @@ -8,22 +9,29 @@ src: url( '../fonts/OpenSans-VariableFont_wdth_wght.ttf' ); } +/**************** Typography ******************/ +a { + color: #a9cd2e; + text-decoration: none; + transition: 0.3s ease-in-out; +} + +/**************** Component Styles ******************/ + +// Verua Slider .verua-slider-wrapper { position: relative; - height: 100vh; width: 100%; color: #fff; } .verua-slider-wrapper .verua-slider { position: relative; - height: 100vh; width: 100%; } .verua-slider-wrapper .verua-slider .slides { position: absolute; - height: 100%; width: 100%; display: flex; flex-direction: column; @@ -35,7 +43,7 @@ } .verua-slider-wrapper .verua-slider .slides.current { - z-index: 1; + // z-index: 1; opacity: 1; } @@ -122,7 +130,7 @@ top: 50%; left: 5%; transform: translateY(-50%); - z-index: 99; + // z-index: 99; font-size: 1.5em; font-weight: 600; border: 2px solid #fff; @@ -142,7 +150,7 @@ top: 50%; right: 5%; transform: translateY(-50%); - z-index: 99; + // z-index: 99; font-size: 1.5em; font-weight: 600; border: 2px solid #fff; @@ -168,7 +176,7 @@ bottom: 15%; left: 50%; transform: translateX(-50%); - z-index: 99; + // z-index: 99; font-size: 1em; font-weight: 500; border: 1px solid #16a; diff --git a/content/german/_index.md b/content/german/_index.md index bb5e9ab..38f3715 100755 --- a/content/german/_index.md +++ b/content/german/_index.md @@ -8,15 +8,28 @@ heroslider: - title: "Administration optimieren, Zeit gewinnen." image: "startseite/startseite-slide-3.jpg" -# Banner -# banner: -# title: "Das ultimative Starter Template " -# content: "Hugoplate is a free starter template built with Hugo and TailwindCSS, providing everything you need to jumpstart your Hugo project and save valuable time." -# image: "/images/banner.png" -# button: -# enable: true -# label: "Get Started For Free" -# link: "https://github.com/zeon-studio/hugoplate" +# Key Features + +keyfeatures: + - icon: "car" + color: "lime-300" + textcolor: "black" + title: "Freiberufliche Pflegefachpersonen" + content: "Die Applikation **VeruA ** Verwaltung & Abrechnung** unterstützt Sie bei Anamnese, Planung, Dokumentation und Abrechnung in der ambulanten Pflege.

VeruA ist optimiert für den Einsatz in einer Einzelperson-Version oder für Teams, die gemeinsam Klienten betreuen und sich gegenseitig Einsicht in die Pflegedokumentation ermöglichen wollen." + - icon: "users" + color: "slate-800" + textcolor: "white" + title: "Spitex-Organisationen" + content: "Vereinfachen Sie die Dokumentation, Administration und Abrechnung in Ihrer Spitex-Organisation mit der Applikation **VeruA ** Verwaltung & Abrechnung.**

+ + Unser Angebot richtet sich besonders an Organisationen, die eine schlanke und kostengünstige Applikation suchen und auf guten Support nicht verzichten wollen.

Bedarfsermittlungen mit **interRAI** erstellen?

**Kein Problem!**

Seit dem ersten Quartal 2020 bieten wir Ihnen die **Schnittstelle zum Perigon interRAI Cloud** an." + - icon: "bank" + color: "white" + textcolor: "black" + title: "Kantonale Abrechnung" + content: "In der Vielfalt der kantonalen Abrechnungen und Bestimmungen stehen wir Ihnen zur Seite.

Wir setzen die kantonalen Vorgaben für Sie um und unterstützen Sie mit diversen Export-Funktionen und Auswertungen.

+ [ERFAHREN SIE MEHR ...](/#) +" # Features features: diff --git a/themes/hugoplate/layouts/index.html b/themes/hugoplate/layouts/index.html index 2cccc73..2a47de1 100755 --- a/themes/hugoplate/layouts/index.html +++ b/themes/hugoplate/layouts/index.html @@ -1,12 +1,11 @@ {{/* Home Template File */}} {{ define "main" }} - - +
-
+
{{ range $i, $e:= .Params.heroslider }} -
+

{{ .title | markdownify }}

@@ -49,42 +48,32 @@ } + + - {{ with .Params.banner }} -
-
-
-
-

- {{ .title | markdownify }} -

-

- {{ .content | markdownify }} -

- {{ with .button }} - {{ if .enable }} - - {{ .label }} - - - {{ end }} - {{ end }} -
-
- {{ partial "image" (dict "Src" .image "Alt" "Banner image" "Loading" "eager" "Class" "mx-auto lg:!max-w-[800px]" "DisplayXL" "800x" ) }} + {{/*
*/}} +
+ {{ range $i, $e:= .Params.keyfeatures }} + +
+ {{/*
*/}} + + {{ with .icon }} +
+
+ {{ end }} +

+ {{ .title | markdownify }} +

+

+ {{ .content | markdownify }} +

-
+ {{ end }}
- {{ end }} - - - + + {{ range $i, $e:= .Params.features }}
diff --git a/themes/hugoplate/layouts/partials/essentials/style.html b/themes/hugoplate/layouts/partials/essentials/style.html index 342b96b..3a8aefe 100755 --- a/themes/hugoplate/layouts/partials/essentials/style.html +++ b/themes/hugoplate/layouts/partials/essentials/style.html @@ -2,16 +2,16 @@ - - +{{/* */}} +{{/* */}} - +{{/* */}} - +{{/* - + */}}