Erstellt Preislisten, PHPMAiler installiert
This commit is contained in:
parent
07171c38d6
commit
3217c0a202
35 changed files with 1011 additions and 73 deletions
11
themes/hugoplate/layouts/shortcodes/alert.html
Normal file
11
themes/hugoplate/layouts/shortcodes/alert.html
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<div role="alert" class="alert light-text relative flex w-2/3 px-4 py-4 mx-auto text-base text-white bg-green-500 {{ with .Get "background-color" }}bg-{{ . }} {{ end }} rounded-lg font-regular">
|
||||
<div class="shrink-0">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2"
|
||||
stroke="currentColor" class="w-8 h-8">
|
||||
<path stroke-linecap="round" stroke-linejoin="round"
|
||||
d="M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z">
|
||||
</path>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="ml-3 mr-12">{{ trim .Inner "\r\n" | .Page.RenderString }}</div>
|
||||
</div>
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
<div class="aligncenter text-center content-center">
|
||||
{{ .Inner }}
|
||||
{{ .InnerDeindent }}
|
||||
</div>
|
||||
|
|
@ -1,5 +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-10">
|
||||
<div class="relative flex flex-col h-full mt-6 text-gray-700 bg-white shadow-md bg-clip-border rounded-xl ">
|
||||
<div class="p-10 h-full">
|
||||
{{ .Inner }}
|
||||
</div>
|
||||
</div>
|
||||
5
themes/hugoplate/layouts/shortcodes/htmlsection.html
Normal file
5
themes/hugoplate/layouts/shortcodes/htmlsection.html
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<section class="bg-cover items-center pt-32 pb-32 {{ with .Get "light-text" }}light-text {{ end }}" style="{{ with .Get "fixed" }}background-attachment: fixed;{{ end }}background-image: url('{{ with .Get "background-image" }}{{ . }}{{ end }}');{{ with .Get "background-color" }}background-color: {{ . }}{{ end }};">
|
||||
<div class="container items-center" >
|
||||
{{ .InnerDeindent }}
|
||||
</div>
|
||||
</section>
|
||||
|
|
@ -1 +1 @@
|
|||
<i class="verua-icon far fa-{{ .Get "name" }} fa-fw text-5xl text-primary"></i>
|
||||
<i class="verua-icon far text-primary {{ with .Get "size"}} text-{{ . }} {{ end }} {{ with .Get "color"}} text-{{ . }} {{ end }} fa-{{ .Get "name" }} fa-fw "></i>
|
||||
|
|
@ -1,6 +1,5 @@
|
|||
<section class="bg-cover items-center pt-32 pb-32 {{ with .Get "light-text" }}light-text {{ end }}" style="{{ with .Get "fixed" }}background-attachment: fixed;{{ end }}background-image: url('{{ with .Get "background-image" }}{{ . }}{{ end }}');{{ with .Get "background-color" }}background-color: {{ . }}{{ end }};">
|
||||
<section class="bg-cover items-center pt-32 pb-32 {{ with .Get "light-text" }}light-text {{ end }} {{ with .Get "classes" }} {{ . }} {{ end }}" style="{{ with .Get "fixed" }}background-attachment: fixed;{{ end }}background-image: url('{{ with .Get "background-image" }}{{ . }}{{ end }}');{{ with .Get "background-color" }}background-color: {{ . }}{{ end }};">
|
||||
<div class="container items-center" >
|
||||
|
||||
{{ .Inner }}
|
||||
</div>
|
||||
</section>
|
||||
5
themes/hugoplate/layouts/shortcodes/smallsection.html
Normal file
5
themes/hugoplate/layouts/shortcodes/smallsection.html
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<section class="bg-cover items-center pt-32 pb-32 {{ with .Get "light-text" }}light-text {{ end }} {{ with .Get "classes" }} {{ . }} {{ end }}" style="{{ with .Get "fixed" }}background-attachment: fixed;{{ end }}background-image: url('{{ with .Get "background-image" }}{{ . }}{{ end }}');{{ with .Get "background-color" }}background-color: {{ . }}{{ end }};">
|
||||
<div class="container items-center" >
|
||||
{{ .Inner }}
|
||||
</div>
|
||||
</section>
|
||||
|
|
@ -1,4 +1,6 @@
|
|||
{{/* TODO ADD S M L Modes */}}
|
||||
{{/* TODO FIX HEIGHT ISSUE */}}
|
||||
{{/* TODO FIX Slider Height on Mobile when no Headline is given */}}
|
||||
<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">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue