master
parent
0c1e36c5f8
commit
44dcc77a5f
|
@ -1,6 +1,20 @@
|
|||
@extends('template.'.config('settings.template').'.content.master')
|
||||
|
||||
@section('content')
|
||||
|
||||
<div class="pt-3 pb-2 mb-5" style="background-color: {{$_primary_ci_color}}">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
||||
<ol class="breadcrumb text-decoration-none">
|
||||
<li class="breadcrumb-item"><a href="{{url('/')}}">Home</a></li>
|
||||
<li class="breadcrumb-item"><a href="{{url('/leistungen')}}">Leistungen</a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page">{{$content->title}}</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,20 @@
|
|||
@extends('template.'.config('settings.template').'.content.master')
|
||||
|
||||
@section('content')
|
||||
|
||||
<div class="pt-3 pb-2 mb-5" style="background-color: {{$_primary_ci_color}}">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
||||
<ol class="breadcrumb text-decoration-none">
|
||||
<li class="breadcrumb-item"><a href="{{url('/')}}">Home</a></li>
|
||||
<li class="breadcrumb-item"><a href="{{url('/aktuelles')}}">Aktuelles</a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page">{{$content->title}}</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
|
|
|
@ -5,6 +5,19 @@
|
|||
<meta name="product-id" content="{{$content->id}}">
|
||||
@stop
|
||||
@section('content')
|
||||
<div class="pt-3 pb-2 mb-5" style="background-color: {{$_primary_ci_color}}">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
||||
<ol class="breadcrumb text-decoration-none">
|
||||
<li class="breadcrumb-item"><a href="{{url('/')}}">Home</a></li>
|
||||
<li class="breadcrumb-item"><a href="{{url('/produkte')}}">Produkte</a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page">{{$content->title}}</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
@if(session()->has('success'))
|
||||
<div class="alert alert-success">{{session()->get('success')}}</div>
|
||||
|
|
|
@ -9,7 +9,9 @@
|
|||
}
|
||||
footer { color: {{$_footer_color}} ;
|
||||
}
|
||||
footer a { color: {{$_footer_link_color}};}
|
||||
|
||||
footer a, .breadcrumb a , .breadcrumb .breadcrumb-item { color: {{$_footer_link_color}};}
|
||||
footer a:hover,.breadcrumb a:hover { color: {{$_footer_secondary_link_color}};}
|
||||
h1,h2,h3,h4{color: {{$_title_color}}!important;}
|
||||
|
||||
.card{background-color: {{$_secondary_background_color}};}
|
||||
|
@ -21,6 +23,13 @@
|
|||
a, a:hover, a:active {color:{{$_primary_link_color}};}
|
||||
|
||||
|
||||
.navbar a:hover{
|
||||
color: {{$_title_color}};
|
||||
}
|
||||
|
||||
.navbar a:active{
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
section{
|
||||
margin-top: 200px;
|
||||
|
|
|
@ -3,7 +3,9 @@
|
|||
<div class="row">
|
||||
<div class="col-12 col-md-6">
|
||||
|
||||
@if($_lumino_branding)
|
||||
Diese Seite benutzt: <a href="https://www.getlumino.com" class="text-decoration-none" target="_blank">Lumino CMS </a>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6 text-end">
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
|
||||
<div class="card text-bg-dark">
|
||||
<img src="{{$cover}}" style="height: 500px;" class="img-fluid shadow-lg" alt="" >
|
||||
<img src="{{$cover}}" class="img-fluid shadow-lg" alt="" >
|
||||
<div class="card-img-overlay" >
|
||||
<div class="container p-3 mt-5 rounded" style="width: 55vw;
|
||||
background: rgba(252, 252, 252, 0.38);
|
||||
|
@ -32,14 +32,27 @@ border: 1px solid rgba(252, 252, 252, 0.54);">
|
|||
<h2 id="aktuelles" class="mb-4">Aktuelles</h2>
|
||||
</div>
|
||||
@foreach(filterByContentType("News")->take(3) as $content)
|
||||
<div class="col-12 col-md-4 mb-3">
|
||||
<div class="col-12 col-md-4 mb-4">
|
||||
<div class="card shadow-sm h-100">
|
||||
<img src="{{ $content->image() }}" class="img-fluid card-img-top">
|
||||
<a href="{{ $content->path }}" class="text-decoration-none">
|
||||
<img src="{{ $content->image() }}" class="img-fluid card-img-top">
|
||||
</a>
|
||||
|
||||
<div class="card-body">
|
||||
<h3 class="h5 mb-2">{{$content->title}} </h3>
|
||||
<h3 class="h5 mb-2">
|
||||
<a href="{{ $content->path }}" class="text-decoration-none">
|
||||
{{$content->title}}
|
||||
|
||||
<div class="text-muted small my-3">{{ $content->updated_at->diffForHumans() }}</div>
|
||||
</a>
|
||||
</h3>
|
||||
|
||||
<div class="text-muted small my-3">
|
||||
<span title="{{$content->created_at}}">
|
||||
<svg style="fill: currentColor;width:15px;margin-bottom: 5px;margin-right: 3px;}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M112 0c8.8 0 16 7.2 16 16V64H320V16c0-8.8 7.2-16 16-16s16 7.2 16 16V64h32c35.3 0 64 28.7 64 64v32 32V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192 160 128C0 92.7 28.7 64 64 64H96V16c0-8.8 7.2-16 16-16zM416 192H32V448c0 17.7 14.3 32 32 32H384c17.7 0 32-14.3 32-32V192zM384 96H64c-17.7 0-32 14.3-32 32v32H416V128c0-17.7-14.3-32-32-32z"/></svg>
|
||||
{{ $content->updated_at->diffForHumans() }}
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
{!! Str::limit($content->vorschau, 280) !!}
|
||||
|
@ -58,7 +71,7 @@ border: 1px solid rgba(252, 252, 252, 0.54);">
|
|||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
<div class="col-12 text-center mt-5">
|
||||
<div class="col-12 text-center mt-4">
|
||||
<a href="{{url('/aktuelles')}}" class="text-muted text-decoration-none">Ältere Nachrichten</a>
|
||||
</div>
|
||||
|
||||
|
@ -66,10 +79,9 @@ border: 1px solid rgba(252, 252, 252, 0.54);">
|
|||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
<section id="stellenangebote">
|
||||
<section id="stellenangebote" class="d-none">
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
@ -123,7 +135,7 @@ border: 1px solid rgba(252, 252, 252, 0.54);">
|
|||
<div class="icon-box-content">
|
||||
|
||||
|
||||
<svg style="fill: {{$_title_color}}} ; width: 70px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M487.8 24.1L387 .8c-14.7-3.4-29.8 4.2-35.8 18.1l-46.5 108.5c-5.5 12.7-1.8 27.7 8.9 36.5l53.9 44.1c-34 69.2-90.3 125.6-159.6 159.6l-44.1-53.9c-8.8-10.7-23.8-14.4-36.5-8.9L18.9 351.3C5 357.3-2.6 372.3.8 387L24 487.7C27.3 502 39.9 512 54.5 512 306.7 512 512 307.8 512 54.5c0-14.6-10-27.2-24.2-30.4zM55.1 480l-23-99.6 107.4-46 59.5 72.8c103.6-48.6 159.7-104.9 208.1-208.1l-72.8-59.5 46-107.4 99.6 23C479.7 289.7 289.6 479.7 55.1 480z"/></svg>
|
||||
<svg style="fill: {{$_title_color}} ; width: 70px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M487.8 24.1L387 .8c-14.7-3.4-29.8 4.2-35.8 18.1l-46.5 108.5c-5.5 12.7-1.8 27.7 8.9 36.5l53.9 44.1c-34 69.2-90.3 125.6-159.6 159.6l-44.1-53.9c-8.8-10.7-23.8-14.4-36.5-8.9L18.9 351.3C5 357.3-2.6 372.3.8 387L24 487.7C27.3 502 39.9 512 54.5 512 306.7 512 512 307.8 512 54.5c0-14.6-10-27.2-24.2-30.4zM55.1 480l-23-99.6 107.4-46 59.5 72.8c103.6-48.6 159.7-104.9 208.1-208.1l-72.8-59.5 46-107.4 99.6 23C479.7 289.7 289.6 479.7 55.1 480z"/></svg>
|
||||
<p class="mt-4">
|
||||
|
||||
|
||||
|
@ -146,7 +158,7 @@ border: 1px solid rgba(252, 252, 252, 0.54);">
|
|||
|
||||
<div class="icon-box-2">
|
||||
|
||||
<svg style="fill: {{$_title_color}}}; width: 70px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 8C118.941 8 8 118.919 8 256c0 137.058 110.919 248 248 248 52.925 0 104.68-17.078 147.092-48.319 5.501-4.052 6.423-11.924 2.095-17.211l-5.074-6.198c-4.018-4.909-11.193-5.883-16.307-2.129C346.93 457.208 301.974 472 256 472c-119.373 0-216-96.607-216-216 0-119.375 96.607-216 216-216 118.445 0 216 80.024 216 200 0 72.873-52.819 108.241-116.065 108.241-19.734 0-23.695-10.816-19.503-33.868l32.07-164.071c1.449-7.411-4.226-14.302-11.777-14.302h-12.421a12 12 0 0 0-11.781 9.718c-2.294 11.846-2.86 13.464-3.861 25.647-11.729-27.078-38.639-43.023-73.375-43.023-68.044 0-133.176 62.95-133.176 157.027 0 61.587 33.915 98.354 90.723 98.354 39.729 0 70.601-24.278 86.633-46.982-1.211 27.786 17.455 42.213 45.975 42.213C453.089 378.954 504 321.729 504 240 504 103.814 393.863 8 256 8zm-37.92 342.627c-36.681 0-58.58-25.108-58.58-67.166 0-74.69 50.765-121.545 97.217-121.545 38.857 0 58.102 27.79 58.102 65.735 0 58.133-38.369 122.976-96.739 122.976z"/></svg>
|
||||
<svg style="fill: {{$_title_color}}; width: 70px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 8C118.941 8 8 118.919 8 256c0 137.058 110.919 248 248 248 52.925 0 104.68-17.078 147.092-48.319 5.501-4.052 6.423-11.924 2.095-17.211l-5.074-6.198c-4.018-4.909-11.193-5.883-16.307-2.129C346.93 457.208 301.974 472 256 472c-119.373 0-216-96.607-216-216 0-119.375 96.607-216 216-216 118.445 0 216 80.024 216 200 0 72.873-52.819 108.241-116.065 108.241-19.734 0-23.695-10.816-19.503-33.868l32.07-164.071c1.449-7.411-4.226-14.302-11.777-14.302h-12.421a12 12 0 0 0-11.781 9.718c-2.294 11.846-2.86 13.464-3.861 25.647-11.729-27.078-38.639-43.023-73.375-43.023-68.044 0-133.176 62.95-133.176 157.027 0 61.587 33.915 98.354 90.723 98.354 39.729 0 70.601-24.278 86.633-46.982-1.211 27.786 17.455 42.213 45.975 42.213C453.089 378.954 504 321.729 504 240 504 103.814 393.863 8 256 8zm-37.92 342.627c-36.681 0-58.58-25.108-58.58-67.166 0-74.69 50.765-121.545 97.217-121.545 38.857 0 58.102 27.79 58.102 65.735 0 58.133-38.369 122.976-96.739 122.976z"/></svg>
|
||||
<div class="icon-box-content">
|
||||
|
||||
|
||||
|
@ -168,16 +180,16 @@ border: 1px solid rgba(252, 252, 252, 0.54);">
|
|||
<div class="icon-box-2">
|
||||
|
||||
|
||||
<svg style="fill: {{$_title_color}}}; width: 70px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.53,242,512,190.75V48a16,16,0,0,0-16-16H400a16,16,0,0,0-16,16V78.75L298.53,4a16,16,0,0,0-21.06,0L5.47,242a16,16,0,0,0,21.07,24.09L64,233.27V464a48.05,48.05,0,0,0,48,48H464a48.05,48.05,0,0,0,48-48V233.27l37.46,32.79A16,16,0,0,0,570.53,242ZM480,464a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V205.27l192-168,192,168Zm0-301.25-64-56V64h64ZM208,218.67V325.34A26.75,26.75,0,0,0,234.66,352H341.3A26.76,26.76,0,0,0,368,325.34V218.67A26.75,26.75,0,0,0,341.3,192H234.66A26.74,26.74,0,0,0,208,218.67ZM240,224h96v96H240Z"/></svg>
|
||||
<svg style="fill: {{$_title_color}}; width: 70px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.53,242,512,190.75V48a16,16,0,0,0-16-16H400a16,16,0,0,0-16,16V78.75L298.53,4a16,16,0,0,0-21.06,0L5.47,242a16,16,0,0,0,21.07,24.09L64,233.27V464a48.05,48.05,0,0,0,48,48H464a48.05,48.05,0,0,0,48-48V233.27l37.46,32.79A16,16,0,0,0,570.53,242ZM480,464a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V205.27l192-168,192,168Zm0-301.25-64-56V64h64ZM208,218.67V325.34A26.75,26.75,0,0,0,234.66,352H341.3A26.76,26.76,0,0,0,368,325.34V218.67A26.75,26.75,0,0,0,341.3,192H234.66A26.74,26.74,0,0,0,208,218.67ZM240,224h96v96H240Z"/></svg>
|
||||
|
||||
<div class="icon-box-content">
|
||||
|
||||
<p class="mt-4">
|
||||
<strong>Kurbad Pleystein</strong>
|
||||
<strong>{{$_legal_name}}</strong>
|
||||
<br>
|
||||
Marktplatz 28
|
||||
{{$_legal_address}}
|
||||
<br>
|
||||
92714 Pleystein
|
||||
{{$_legal_zip_code}} {{$_legal_city}}
|
||||
</p>
|
||||
|
||||
|
||||
|
|
|
@ -17,19 +17,30 @@
|
|||
|
||||
@foreach($contents as $content)
|
||||
|
||||
<div class="col-12 col-md-4 mb-3">
|
||||
<div class="col-12 col-md-4 mb-4">
|
||||
<div class="card shadow-sm h-100">
|
||||
<img src="{{ $content->image() }}" class="img-fluid card-img-top">
|
||||
<a href="{{ $content->path }}" class="text-decoration-none">
|
||||
<img src="{{ $content->image() }}" class="img-fluid card-img-top">
|
||||
</a>
|
||||
|
||||
<div class="card-body">
|
||||
<h3 class="h5 mb-2">{{$content->title}} </h3>
|
||||
<h3 class="h5 mb-2">
|
||||
<a href="{{ $content->path }}" class="text-decoration-none">
|
||||
{{$content->title}}
|
||||
|
||||
<div class="text-muted small my-3">{{ $content->updated_at->diffForHumans() }}</div>
|
||||
</a>
|
||||
</h3>
|
||||
|
||||
<div class="text-muted small my-3">
|
||||
<span title="{{$content->created_at}}">
|
||||
<svg style="fill: currentColor;width:15px;margin-bottom: 5px;margin-right: 3px;}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M112 0c8.8 0 16 7.2 16 16V64H320V16c0-8.8 7.2-16 16-16s16 7.2 16 16V64h32c35.3 0 64 28.7 64 64v32 32V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192 160 128C0 92.7 28.7 64 64 64H96V16c0-8.8 7.2-16 16-16zM416 192H32V448c0 17.7 14.3 32 32 32H384c17.7 0 32-14.3 32-32V192zM384 96H64c-17.7 0-32 14.3-32 32v32H416V128c0-17.7-14.3-32-32-32z"/></svg>
|
||||
{{ $content->updated_at->diffForHumans() }}
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
{!! Str::limit($content->vorschau, 280) !!}
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="card-footer text-end">
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="row mb-5">
|
||||
<div class="col-12">
|
||||
<h1 class="mb-5 mt-5">{{ $list->name }}</h1>
|
||||
|
||||
|
@ -22,41 +22,26 @@
|
|||
|
||||
|
||||
|
||||
|
||||
<div class="card h-100 shadow-lg mb-4" id="news-{{$content->id}}">
|
||||
<a href="{{ $content->path }}" class="text-decoration-none">
|
||||
<div class="card h-100 shadow-lg mb-4" id="news-{{$content->id}}">
|
||||
|
||||
<img src="{{ $content->image() }}" class="card-img-top">
|
||||
|
||||
<div class="card-body">
|
||||
<h3 class="h5 mb-2">{{$content->title}} </h3>
|
||||
<div class="card-body">
|
||||
<h3 class="h5 mb-2">{{$content->title}} </h3>
|
||||
|
||||
<div class="fw-bold my-3 text-right fs-5" style="color: {{$_secondary_link_color}};">{{$content->preis}} €</div>
|
||||
<div class="fw-bold my-3 text-right fs-5" style="color: {{$_secondary_link_color}};">{{$content->preis}} €</div>
|
||||
|
||||
{!! Str::limit($content->kurzbeschreibung, 100) !!}
|
||||
{!! Str::limit($content->kurzbeschreibung, 100) !!}
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card-footer text-end">
|
||||
<a class="btn btn-sm btn-ci" href="{{ $content->path }}" onclick="gtag('event', 'See Job', {'event_category' : 'Home', 'event_label' : '{{$content->title}}'});">
|
||||
Mehr lesen
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-right" viewBox="0 0 16 16">
|
||||
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z" />
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@endforeach
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
@extends('template.'.config('settings.template').'.content.master')
|
||||
@section('content')
|
||||
|
||||
<img src="{{ $list->image }}" class="img-fluid" alt="">
|
||||
|
||||
|
||||
|
@ -18,30 +19,17 @@
|
|||
@foreach($contents as $content)
|
||||
|
||||
<div class="col-12 col-md-4 mb-3">
|
||||
<div class="card shadow-sm">
|
||||
<img src="{{ $content->image() }}" class="img-fluid card-img-top">
|
||||
|
||||
<div class="card-body">
|
||||
<h3 class="h5 mb-2">{{$content->title}} </h3>
|
||||
|
||||
<div class="fw-bold my-3 text-right fs-5" style="color: {{$_secondary_link_color}};">{{$content->preis}} €</div>
|
||||
|
||||
{!! Str::limit($content->kurzbeschreibung, 100) !!}
|
||||
|
||||
|
||||
|
||||
<a href="{{ $content->path }}" class="text-decoration-none">
|
||||
<div class="card shadow-sm">
|
||||
<img src="{{ $content->image() }}" class="img-fluid card-img-top">
|
||||
<div class="card-body">
|
||||
<h3 class="h5 mb-2">{{$content->title}} </h3>
|
||||
<div class="fw-bold my-3 text-right fs-5" style="color: {{$_secondary_link_color}};">{{$content->preis}} €</div>
|
||||
{!! Str::limit($content->kurzbeschreibung, 100) !!}
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<div class="card-footer text-end">
|
||||
<a class="btn btn-sm btn-ci" href="{{ $content->path }}" onclick="gtag('event', 'See Job', {'event_category' : 'Home', 'event_label' : '{{$content->title}}'});">
|
||||
Produkt ansehen
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-right" viewBox="0 0 16 16">
|
||||
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z" />
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -34,6 +34,8 @@
|
|||
<a class="nav-item nav-link" href="{{url('/ueber-uns')}}">Über uns</a>
|
||||
<a class="nav-item nav-link" href="{{url('/aktuelles')}}">Aktuelles</a>
|
||||
<a class="nav-item nav-link" href="{{url('/kontakt')}}">Kontakt</a>
|
||||
|
||||
@if($_warenkorb_aktiv)
|
||||
<li class="nav-item ms-md-5">
|
||||
<a href="" data-bs-toggle="modal" data-bs-target="#ShoppingCart" class="position-relative">
|
||||
<svg style="fill: {{$_primary_ci_color}}; width: 30px; margin-top: 6px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M352 128C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128H0v304c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V128h-96zM224 48c44.112 0 80 35.888 80 80H144c0-44.112 35.888-80 80-80zm176 384c0 17.645-14.355 32-32 32H80c-17.645 0-32-14.355-32-32V176h48v40c0 13.255 10.745 24 24 24s24-10.745 24-24v-40h160v40c0 13.255 10.745 24 24 24s24-10.745 24-24v-40h48v256z"></path></svg>
|
||||
|
@ -41,6 +43,7 @@
|
|||
</a>
|
||||
</li>
|
||||
|
||||
@endif
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -24,16 +24,16 @@
|
|||
<br>
|
||||
|
||||
|
||||
<b>Kurbad Pleystein</b>
|
||||
<b>{{$_legal_name}}</b>
|
||||
<br>
|
||||
Marktplatz 28
|
||||
{{$_legal_address}}
|
||||
<br>
|
||||
92714 Pleystein
|
||||
{{$_legal_zip_code}} {{$_legal_city}}
|
||||
<br>
|
||||
Deutschland
|
||||
<br>
|
||||
<br>
|
||||
Inhaber: Manfred Voit
|
||||
Geschäftsführer: {{$_ceo}}
|
||||
<br>
|
||||
<br>
|
||||
Tel.: <a href="tel:+499654770">09654/770</a>
|
||||
|
|
|
@ -16,11 +16,11 @@
|
|||
<div class="icon-box-content">
|
||||
|
||||
|
||||
<svg style="fill: {{$_title_color}}} ; width: 70px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M487.8 24.1L387 .8c-14.7-3.4-29.8 4.2-35.8 18.1l-46.5 108.5c-5.5 12.7-1.8 27.7 8.9 36.5l53.9 44.1c-34 69.2-90.3 125.6-159.6 159.6l-44.1-53.9c-8.8-10.7-23.8-14.4-36.5-8.9L18.9 351.3C5 357.3-2.6 372.3.8 387L24 487.7C27.3 502 39.9 512 54.5 512 306.7 512 512 307.8 512 54.5c0-14.6-10-27.2-24.2-30.4zM55.1 480l-23-99.6 107.4-46 59.5 72.8c103.6-48.6 159.7-104.9 208.1-208.1l-72.8-59.5 46-107.4 99.6 23C479.7 289.7 289.6 479.7 55.1 480z"/></svg>
|
||||
<svg style="fill: {{$_title_color}} ; width: 70px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M487.8 24.1L387 .8c-14.7-3.4-29.8 4.2-35.8 18.1l-46.5 108.5c-5.5 12.7-1.8 27.7 8.9 36.5l53.9 44.1c-34 69.2-90.3 125.6-159.6 159.6l-44.1-53.9c-8.8-10.7-23.8-14.4-36.5-8.9L18.9 351.3C5 357.3-2.6 372.3.8 387L24 487.7C27.3 502 39.9 512 54.5 512 306.7 512 512 307.8 512 54.5c0-14.6-10-27.2-24.2-30.4zM55.1 480l-23-99.6 107.4-46 59.5 72.8c103.6-48.6 159.7-104.9 208.1-208.1l-72.8-59.5 46-107.4 99.6 23C479.7 289.7 289.6 479.7 55.1 480z"/></svg>
|
||||
<p class="mt-4">
|
||||
|
||||
|
||||
Telefon: <a href="tel://+499654770" class="text-decoration-none">09654/770</a>
|
||||
Telefon: <a href="tel://{{$_telefonnummer}}" class="text-decoration-none">{{$_telefonnummer}}</a>
|
||||
|
||||
|
||||
</p>
|
||||
|
@ -39,13 +39,13 @@
|
|||
|
||||
<div class="icon-box-2">
|
||||
|
||||
<svg style="fill: {{$_title_color}}}; width: 70px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 8C118.941 8 8 118.919 8 256c0 137.058 110.919 248 248 248 52.925 0 104.68-17.078 147.092-48.319 5.501-4.052 6.423-11.924 2.095-17.211l-5.074-6.198c-4.018-4.909-11.193-5.883-16.307-2.129C346.93 457.208 301.974 472 256 472c-119.373 0-216-96.607-216-216 0-119.375 96.607-216 216-216 118.445 0 216 80.024 216 200 0 72.873-52.819 108.241-116.065 108.241-19.734 0-23.695-10.816-19.503-33.868l32.07-164.071c1.449-7.411-4.226-14.302-11.777-14.302h-12.421a12 12 0 0 0-11.781 9.718c-2.294 11.846-2.86 13.464-3.861 25.647-11.729-27.078-38.639-43.023-73.375-43.023-68.044 0-133.176 62.95-133.176 157.027 0 61.587 33.915 98.354 90.723 98.354 39.729 0 70.601-24.278 86.633-46.982-1.211 27.786 17.455 42.213 45.975 42.213C453.089 378.954 504 321.729 504 240 504 103.814 393.863 8 256 8zm-37.92 342.627c-36.681 0-58.58-25.108-58.58-67.166 0-74.69 50.765-121.545 97.217-121.545 38.857 0 58.102 27.79 58.102 65.735 0 58.133-38.369 122.976-96.739 122.976z"/></svg>
|
||||
<svg style="fill: {{$_title_color}}; width: 70px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 8C118.941 8 8 118.919 8 256c0 137.058 110.919 248 248 248 52.925 0 104.68-17.078 147.092-48.319 5.501-4.052 6.423-11.924 2.095-17.211l-5.074-6.198c-4.018-4.909-11.193-5.883-16.307-2.129C346.93 457.208 301.974 472 256 472c-119.373 0-216-96.607-216-216 0-119.375 96.607-216 216-216 118.445 0 216 80.024 216 200 0 72.873-52.819 108.241-116.065 108.241-19.734 0-23.695-10.816-19.503-33.868l32.07-164.071c1.449-7.411-4.226-14.302-11.777-14.302h-12.421a12 12 0 0 0-11.781 9.718c-2.294 11.846-2.86 13.464-3.861 25.647-11.729-27.078-38.639-43.023-73.375-43.023-68.044 0-133.176 62.95-133.176 157.027 0 61.587 33.915 98.354 90.723 98.354 39.729 0 70.601-24.278 86.633-46.982-1.211 27.786 17.455 42.213 45.975 42.213C453.089 378.954 504 321.729 504 240 504 103.814 393.863 8 256 8zm-37.92 342.627c-36.681 0-58.58-25.108-58.58-67.166 0-74.69 50.765-121.545 97.217-121.545 38.857 0 58.102 27.79 58.102 65.735 0 58.133-38.369 122.976-96.739 122.976z"/></svg>
|
||||
<div class="icon-box-content">
|
||||
|
||||
|
||||
|
||||
<p class="mt-4">
|
||||
<a href="mailto:info@kurbad-pleystein.de" class="text-decoration-none">info@kurbad-pleystein.de</a>
|
||||
<a href="mailto:info@kurbad-pleystein.de" class="text-decoration-none"><span class="badge text-bg-danger" style="cursor: help" title="Variable is Missing">$_warenkorb_aktiv</span></a>
|
||||
</p>
|
||||
<br>
|
||||
<br>
|
||||
|
@ -61,16 +61,16 @@
|
|||
<div class="icon-box-2">
|
||||
|
||||
|
||||
<svg style="fill: {{$_title_color}}}; width: 70px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.53,242,512,190.75V48a16,16,0,0,0-16-16H400a16,16,0,0,0-16,16V78.75L298.53,4a16,16,0,0,0-21.06,0L5.47,242a16,16,0,0,0,21.07,24.09L64,233.27V464a48.05,48.05,0,0,0,48,48H464a48.05,48.05,0,0,0,48-48V233.27l37.46,32.79A16,16,0,0,0,570.53,242ZM480,464a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V205.27l192-168,192,168Zm0-301.25-64-56V64h64ZM208,218.67V325.34A26.75,26.75,0,0,0,234.66,352H341.3A26.76,26.76,0,0,0,368,325.34V218.67A26.75,26.75,0,0,0,341.3,192H234.66A26.74,26.74,0,0,0,208,218.67ZM240,224h96v96H240Z"/></svg>
|
||||
<svg style="fill: {{$_title_color}}; width: 70px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.53,242,512,190.75V48a16,16,0,0,0-16-16H400a16,16,0,0,0-16,16V78.75L298.53,4a16,16,0,0,0-21.06,0L5.47,242a16,16,0,0,0,21.07,24.09L64,233.27V464a48.05,48.05,0,0,0,48,48H464a48.05,48.05,0,0,0,48-48V233.27l37.46,32.79A16,16,0,0,0,570.53,242ZM480,464a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V205.27l192-168,192,168Zm0-301.25-64-56V64h64ZM208,218.67V325.34A26.75,26.75,0,0,0,234.66,352H341.3A26.76,26.76,0,0,0,368,325.34V218.67A26.75,26.75,0,0,0,341.3,192H234.66A26.74,26.74,0,0,0,208,218.67ZM240,224h96v96H240Z"/></svg>
|
||||
|
||||
<div class="icon-box-content">
|
||||
|
||||
<p class="mt-4">
|
||||
<strong>Kurbad Pleystein</strong>
|
||||
<strong>{{$_legal_name}}</strong>
|
||||
<br>
|
||||
Marktplatz 28
|
||||
<span class="badge text-bg-danger" style="cursor: help" title="Variable is Missing">$_warenkorb_aktiv</span> <span class="badge text-bg-danger" style="cursor: help" title="Variable is Missing">$_warenkorb_aktiv</span>
|
||||
<br>
|
||||
92714 Pleystein
|
||||
<span class="badge text-bg-danger" style="cursor: help" title="Variable is Missing">$_warenkorb_aktiv</span> <span class="badge text-bg-danger" style="cursor: help" title="Variable is Missing">$_warenkorb_aktiv</span>
|
||||
</p>
|
||||
|
||||
|
||||
|
@ -83,6 +83,8 @@
|
|||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,54 @@
|
|||
[
|
||||
|
||||
{
|
||||
"icon": "/font-awesome/light/building.svg",
|
||||
"group_name": "Allgemein",
|
||||
"description": "Allgemeine Einstellungen",
|
||||
"variables": [
|
||||
{
|
||||
"name": "Telefonnummer",
|
||||
"placeholder": "096545529550",
|
||||
"type": "string",
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"name": "Legal Name",
|
||||
"value": "Musterfirma GmbH",
|
||||
"placeholder": "Musterfirma GmbH",
|
||||
"type": "string",
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"name": "Legal Address",
|
||||
"value": "Musterstr 33",
|
||||
"placeholder": "Musterstr 33",
|
||||
"type": "string",
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"name": "Legal City",
|
||||
"value": "Musterhausen",
|
||||
"placeholder": "Musterhausen",
|
||||
"type": "string",
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"name": "Legal ZIP Code",
|
||||
"value": "12345",
|
||||
"placeholder": "12345",
|
||||
"type": "string",
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"name": "ceo",
|
||||
"value": "Max Mustermann",
|
||||
"placeholder": "Max Mustermann",
|
||||
"type": "string",
|
||||
"required": true
|
||||
}
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"icon": "/font-awesome/light/bag-shopping.svg",
|
||||
"group_name": "Warenkorb",
|
||||
|
@ -102,6 +151,15 @@
|
|||
"required": true
|
||||
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Footer Secondary Link Color",
|
||||
"type": "color",
|
||||
"value" : "#000000",
|
||||
"required": true
|
||||
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
|
@ -131,10 +189,20 @@
|
|||
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Schriftart",
|
||||
"type": "string",
|
||||
"type": "select",
|
||||
"value" : "15px/25px 'Noto Sans', Arial, sans-serif",
|
||||
"options": [
|
||||
"15px/25px 'Noto Sans', Arial, sans-serif",
|
||||
"Playfair Display",
|
||||
"Dosis",
|
||||
"Times New Roman",
|
||||
"Helvetica",
|
||||
"Verdana",
|
||||
"Trebuchet MS"
|
||||
],
|
||||
"required": true
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue