Angelegt Seite "Ambulante Pflege", Shortcode "Card"

This commit is contained in:
Andreas Hnida 2024-02-20 13:51:18 +00:00
commit e047c4d2df
12 changed files with 76 additions and 20 deletions

View file

@ -16,7 +16,7 @@
// "description": "Log output to console"
// }
"Insert Shortcode Columns": {
"scope": "html, markdown, md",
"scope": "markdown, md",
"prefix": "columns",
"body": [
"{{% columns %}}",
@ -25,4 +25,34 @@
],
"description": "Insert Shortcode Columns"
},
"Insert Shortcode Slider": {
"scope": "markdown, md",
"prefix": "slider",
"body": [
"{{% slider %}}",
"{{% slide image=\"$1\" ${2:title=\"$3 \"} %}}",
"{{% /slider %}}",
],
"description": "Insert Shortcode Columns"
},
"Insert Shortcode AclignCenter": {
"scope": "markdown, md",
"prefix": "AlignCenter",
"body": [
"{{% aligncenter %}}",
"$1",
"{{% /aligncenter %}}",
],
"description": "Insert Shortcode Columns"
},
"Insert Shortcode Section": {
"scope": "markdown, md",
"prefix": "section",
"body": [
"{{% section %}}",
"$1",
"{{% /section %}}",
],
"description": "Insert Shortcode Columns"
},
}

View file

@ -64,6 +64,15 @@ footer, footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, footer
img {
margin-bottom:16px;
}
hr {
width: 12%;
height: 2px;
background-color: #a9cd2e;
margin: 15px auto 0 auto !important;
display: block;
}
@media (max-width: 770px) {
.btn{
display:block

View file

@ -9,19 +9,19 @@ hasChildren = true
[[main]]
name = "Ambulante Pflege"
url = "ambulante-pflege/"
url = "dienstleistung/ambulante-pflege/"
parent = "Dienstleistung"
weight = 1
[[main]]
name = "Elektronische Abrechnung"
url = "elektronische-abrechnung/"
url = "dienstleistung/elektronische-abrechnung/"
parent = "Dienstleistung"
weight = 2
[[main]]
name = "Kantonale Vorgaben"
url = "kantonale-vorgaben/"
url = "dienstleistung/kantonale-vorgaben/"
parent = "Dienstleistung"
weight = 3

View file

@ -0,0 +1,23 @@
+++
date = '2024-02-20T12:04:43Z'
draft = false
title = 'Ambulante Pflege'
+++
{{% veruaslider %}}
{{% slide image="../pic_2.png" first="true" %}}
{{% slide image="../pic_1.png" %}}
{{% /veruaslider %}}
{{% section %}}
{{% aligncenter %}}
#### Flexibel und einfach
# **Verua in der ambulanten Pflege**
Das Werkzeug, das Sie in den Tätigkeiten rund um die ambulante Pflege unterstützt.
---
{{% /aligncenter %}}
{{% /section %}}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

View file

@ -3,7 +3,7 @@ title: "Footer"
---
{{% aligncenter %}}
![verua logo](images/verua_logo_w.png)
![verua logo](/images/verua_logo_w.png)
 
## **RaBe WebSolutions**

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

View file

@ -1,16 +1,5 @@
{{ define "main" }}
{{ partial "page-header" . }}
<section class="section-sm">
<div class="container">
<div class="row justify-center">
<div class="lg:col-10">
<div class="content">
{{ .Content }}
</div>
</div>
</div>
</div>
</section>
{{ end }}

View file

@ -0,0 +1,5 @@
<div class="relative flex flex-col mt-6 text-gray-700 bg-white shadow-md bg-clip-border rounded-xl w-96">
<div class="p-6">
{{ .Inner }}
</div>
</div>

View file

@ -1,7 +1,7 @@
<div class="slides h-screen md:h-full {{ if isset .Params "first" }}current{{ end }}" style="background-image:url('{{ .Get "image" }}')">
<h1 class="mb-4 text-4xl font-extrabold leading-none tracking-tight md:text-5xl lg:text-6xl">
{{ if ne (.Get "title") "" }}
<h1 class="mb-4 text-4xl font-extrabold leading-none tracking-tight md:text-5xl lg:text-6xl">
{{ .Get "title" }}
{{ end }}
</h1>
{{ end }}
</div>

View file

@ -1,3 +1,4 @@
{{/* TODO ADD S M L Modes */}}
<section class="hero-slider h-screen md:h-[750px]">
<div class="verua-slider-wrapper">
<div class="verua-slider h-screen md:h-[750px]" id="verua-slider">
@ -36,6 +37,5 @@ slideNumber = slideNumber+1;
}
slides[slideNumber].classList.add("current");
}
</script>
<!-- /Hero Slider -->