master
parent
ea915a1928
commit
f6dd00aa9f
|
@ -0,0 +1,142 @@
|
|||
@extends('template.'.config('settings.template').'.content.master')
|
||||
@section('head')
|
||||
<title>{{$content->title}}</title>
|
||||
|
||||
<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('/jobs')}}">Job</a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page">{{$content->title}}</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-12 col-lg-7">
|
||||
|
||||
|
||||
<div class="col-12 col-md-11 d-flex">
|
||||
<h1 class="mt-3 mb-2 ">{{$content->title}}</h1>
|
||||
</div>
|
||||
<div class="fw-bolder my-4">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut deleniti dolorem eius esse eum ex explicabo id impedit inventore modi necessitatibus odit perferendis quibusdam quis ratione reprehenderit rerum, voluptates. Nihil.
|
||||
</div>
|
||||
<div class="col-6 text-muted small mb-3">
|
||||
Veröffentlicht: {{date('d.m.Y', strtotime($content->created_at))}}
|
||||
</div>
|
||||
<div class="col-12 col-lg-9">
|
||||
<x-img src="{{ $content->image() }}" class="img-fluid rounded" />
|
||||
<br>
|
||||
</div>
|
||||
<div class="col-12 mb-5 mt-5 fs-5">
|
||||
{!! isset($content->neuigkeit) ? $content->neuigkeit : 'keine Angaben' !!}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-lg-4 offset-lg-1">
|
||||
<div class="card mb-5 mt-5 shadow-lg">
|
||||
<div class="card-header text-center">
|
||||
<h3 class="fs-5 fw-bold">Jetzt bewerben</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<form>
|
||||
<div class="mb-4">
|
||||
<label for="exampleInputEmail1" class="form-label">Name:</label>
|
||||
<input type="name" name="name" class="form-control" id="name" aria-describedby="emailHelp" placeholder="Max Mustermann" autocomplete="on">
|
||||
</div>
|
||||
|
||||
<div class="mb-4">
|
||||
<label for="exampleInputEmail1" class="form-label">Telefonnummer:</label>
|
||||
<input type="tel" name="tel" class="form-control" id="tel" aria-describedby="emailHelp" placeholder="0170 1234 56478" autocomplete="on">
|
||||
</div>
|
||||
|
||||
<div class="mb-4">
|
||||
<label for="exampleInputEmail1" class="form-label">E-Mail:</label>
|
||||
<input type="name" name="email"class="form-control" id="email" aria-describedby="emailHelp" placeholder="beispiel@areya.de" autocomplete="on">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-floating mb-4">
|
||||
<textarea style="height: 80px;" class="form-control" placeholder="Leave a comment here" id="floatingTextarea"></textarea>
|
||||
<label for="floatingTextarea">Nachricht</label>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="d-grid gap-2">
|
||||
<button type="submit" class="btn btn-primary btn-block">Bewerbung unverbindlich absenden
|
||||
<svg style="fill: currentColor;width: 17px;margin-left: 6px;margin-bottom: 4px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z"/></svg>
|
||||
</button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
@php($otherContents = filterByContentType("Jobs")->filter(function ($item) use ($content) { return $item->id != $content->id; }))
|
||||
|
||||
@if($otherContents->isNotEmpty())
|
||||
|
||||
<div class="row mb-5">
|
||||
|
||||
|
||||
<div class="col-12">
|
||||
<hr class="pb-5 mt-5">
|
||||
<h2 class="mb-4 mt-5 h3">Weitere Stellenangebote</h2>
|
||||
</div>
|
||||
|
||||
@foreach($otherContents->take(3) as $otherContent)
|
||||
|
||||
<div class="col-12 col-md-4 mb-3">
|
||||
|
||||
<a href="{{$otherContent->path}}" class="text-decoration-none">
|
||||
<div class="card shadow-sm h-100">
|
||||
|
||||
<div class="card-body">
|
||||
<h3 class="h5 mb-2">
|
||||
{{$otherContent->title}}
|
||||
</h3>
|
||||
|
||||
<div class="text-muted small my-3">
|
||||
<span title="{{$otherContent->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>
|
||||
{{ $otherContent->updated_at->diffForHumans() }}
|
||||
|
||||
</span>
|
||||
</div>
|
||||
{!! Str::limit($otherContent->title, 280) !!}
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
@endforeach
|
||||
|
||||
</div>
|
||||
|
||||
@endif
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
@stop
|
|
@ -88,63 +88,7 @@
|
|||
</section>
|
||||
@endif
|
||||
|
||||
<section id="stellenangebote" class="d-none">
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h2>Stellenangebote</h2>
|
||||
<br>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="table">
|
||||
<thead class="thead-light">
|
||||
<tr>
|
||||
<th scope="col">Datum</th>
|
||||
<th scope="col">Stellenbezeichnung</th>
|
||||
<th scope="col">Standort</th>
|
||||
<th scope="col" class="text-end">Jetzt bewerben</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
|
||||
|
||||
<tr>
|
||||
<td>vor 9 Monaten</td>
|
||||
<td>Programmierer(m/w/d)</td>
|
||||
<td>92714 Pleystein</td>
|
||||
<td class="text-end"><a href="mailto:info@kurbad-pleystein.de" class="text-decoration-none">Jetzt bewerben <i class="fal fa-envelope"></i> </a> </td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>vor 9 Monaten</td>
|
||||
<td>Programmierer(m/w/d)</td>
|
||||
<td>92714 Pleystein</td>
|
||||
<td class="text-end"><a href="mailto:info@kurbad-pleystein.de" class="text-decoration-none">Jetzt bewerben <i class="fal fa-envelope"></i> </a> </td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>vor 9 Monaten</td>
|
||||
<td>Programmierer(m/w/d)</td>
|
||||
<td>92714 Pleystein</td>
|
||||
<td class="text-end"><a href="mailto:info@kurbad-pleystein.de" class="text-decoration-none">Jetzt bewerben <i class="fal fa-envelope"></i> </a> </td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="kontakt">
|
||||
<div class="container">
|
||||
|
|
|
@ -0,0 +1,72 @@
|
|||
@extends('template.'.config('settings.template').'.content.master')
|
||||
@section('content')
|
||||
|
||||
|
||||
<x-img src="{{ $list->image }}" class="img-fluid" alt=""/>
|
||||
|
||||
<div class="container">
|
||||
<div class="row mb-5">
|
||||
<div class="col-12">
|
||||
<h1 class="mb-5 mt-5">{{ $list->name }}</h1>
|
||||
|
||||
<p class="fs-5 mb-5">
|
||||
{{ $list->description }}
|
||||
</p>
|
||||
</div>
|
||||
@foreach($contents as $content)
|
||||
|
||||
<div class="col-12 my-3">
|
||||
<div class="card" style="background-color: {{$_secondary_background_color}};">
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-3 col-lg-1">
|
||||
<img src="{{$favicon['180']}}" title="{{$_legal_name}}" class="border rounded img-fluid shadow-sm" alt="{{$_legal_name}}">
|
||||
</div>
|
||||
<div class="col-9 col-lg-3 mt-4">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" style="height:25px; fill: black;" width="16" height="16" fill="currentColor" class="bi bi-building" viewBox="0 0 16 16">
|
||||
<path fill-rule="evenodd" d="M14.763.075A.5.5 0 0 1 15 .5v15a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5V14h-1v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V10a.5.5 0 0 1 .342-.474L6 7.64V4.5a.5.5 0 0 1 .276-.447l8-4a.5.5 0 0 1 .487.022zM6 8.694L1 10.36V15h5V8.694zM7 15h2v-1.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5V15h2V1.309l-7 3.5V15z"></path>
|
||||
<path d="M2 11h1v1H2v-1zm2 0h1v1H4v-1zm-2 2h1v1H2v-1zm2 0h1v1H4v-1zm4-4h1v1H8V9zm2 0h1v1h-1V9zm-2 2h1v1H8v-1zm2 0h1v1h-1v-1zm2-2h1v1h-1V9zm0 2h1v1h-1v-1zM8 7h1v1H8V7zm2 0h1v1h-1V7zm2 0h1v1h-1V7zM8 5h1v1H8V5zm2 0h1v1h-1V5zm2 0h1v1h-1V5zm0-2h1v1h-1V3z"></path>
|
||||
</svg>
|
||||
{{$_legal_name}}
|
||||
</div>
|
||||
<div class="col-12 col-lg-6">
|
||||
<h5 class="card-title mt-4">
|
||||
<a class="text-decoration-none" href="{{$content->path}}">
|
||||
{{$content->title}}
|
||||
</a>
|
||||
</h5>
|
||||
|
||||
<h6 class="my-2 text-muted">
|
||||
<svg style="width: 10px; margin-bottom: 6px; fill: #db4739" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"></path></svg>
|
||||
{{$_legal_zip_code}} {{$_legal_city}}
|
||||
</h6>
|
||||
</div>
|
||||
<div class="col-5 d-lg-none mt-2">
|
||||
<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>
|
||||
<div class="col-7 col-lg-2 text-end ">
|
||||
|
||||
<span title="{{$content->created_at}}" class="d-none d-lg-block">
|
||||
<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>
|
||||
<a class="btn btn-primary btn-sm mt-2" href="{{$content->path}}" onclick="gtag('event', 'See Job', {'event_category' : 'Home', 'event_label' : ''});">
|
||||
Job 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"></path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@stop
|
|
@ -2,7 +2,7 @@
|
|||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, user-scalable=no">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>{{config('settings.name')}}</title>
|
||||
@include('template.'.config('settings.template').'.content.includes.css')
|
||||
@if(isset($_COOKIE["cookies-consent"]) && $_COOKIE["cookies-consent"])
|
||||
|
@ -17,7 +17,32 @@
|
|||
@yield('head')
|
||||
|
||||
</head>
|
||||
<body style="border-top: 8px solid {{$_primary_ci_color}};">
|
||||
<body>
|
||||
@if($_contact_bar)
|
||||
|
||||
<div style="background-color: {{$_primary_ci_color}}; color: {{$_footer_color}}; font-size: 13px;">
|
||||
<div class="container">
|
||||
<div class="row py-1">
|
||||
<div class="col-6">
|
||||
{{$_legal_zip_code}} {{$_legal_city}}
|
||||
</div>
|
||||
<div class="col text-end">
|
||||
<a href="tel:{{$_telefonnummer}}" class="text-decoration-none" style="color:{{$_footer_color}}">
|
||||
<svg style="fill: currentColor; width: 13px; margin-bottom: 1px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM186.7 128.7c9.7-2.6 19.9 2.3 23.7 11.6l20 48c3.4 8.2 1 17.6-5.8 23.2L200 231.7c16.6 35.2 45.1 63.7 80.3 80.3l20.2-24.7c5.6-6.8 15-9.2 23.2-5.8l48 20c9.3 3.9 14.2 14 11.6 23.7l-12 44C368.9 378 361 384 352 384c-123.7 0-224-100.3-224-224c0-9 6-16.9 14.7-19.3l44-12z"/></svg>
|
||||
{{$_telefonnummer}}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@else
|
||||
<div style="border-top: 8px solid {{$_primary_ci_color}};">
|
||||
|
||||
</div>
|
||||
|
||||
@endif
|
||||
|
||||
<nav class="navbar navbar-expand-lg py-3" style="background-color: {{$_menue_background_color}};">
|
||||
<div class="container ">
|
||||
<a class="navbar-brand " href="{{url('/')}}">
|
||||
|
@ -40,8 +65,11 @@
|
|||
|
||||
<a class="nav-item nav-link {{request()->is('produkt*')?'active':''}}" href="{{url('/produkte')}}">Produkte</a>
|
||||
<a class="nav-item nav-link {{request()->is('leistung*')?'active':''}}" href="{{url('/leistungen')}}">Leistungen</a>
|
||||
<a class="nav-item nav-link {{request()->is('ueber-uns*')?'active':''}}" href="{{url('/ueber-uns')}}">Über uns</a>
|
||||
<a class="nav-item nav-link {{request()->is('aktuelles*') || request()->is('news*')?'active':''}}" href="{{url('/aktuelles')}}">Aktuelles</a>
|
||||
|
||||
<a class="nav-item nav-link {{request()->is('ueber-uns*')?'active':''}}" href="{{url('/ueber-uns')}}">Über uns</a>
|
||||
<a class="nav-item nav-link {{request()->is('referenzen*')?'active':''}}" href="{{url('/ueber-uns')}}">Referenzen</a>
|
||||
<a class="nav-item nav-link {{request()->is('jobs*')?'active':''}}" href="{{url('/jobs')}}">Jobs</a>
|
||||
<a class="nav-item nav-link {{request()->is('kontakt*')?'active':''}}" href="{{url('/kontakt')}}">Kontakt</a>
|
||||
|
||||
@if($_warenkorb_aktiv)
|
||||
|
|
|
@ -19,43 +19,8 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<h1 class="mt-5 mb-4">Kostenloses Beratungsgespräch</h1>
|
||||
<h5 class="mt-5 mb-4">Wann haben Sie Zeit um zu telefonieren?</h5>
|
||||
<p class="fs-5">Wenn Sie wünschen können wir unverbindlich über Ihre Auswahl sprechen, bevor ich Ihnen ein Angebot zuschicke.
|
||||
<br>
|
||||
So können Sie alle Fragen und etwaige Unklarheiten direkt mit mir klären.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-12" style="min-height:800px; ">
|
||||
<!-- Calendly inline widget begin -->
|
||||
<div class="calendly-inline-widget" style="width:1200px;;height:100%;" data-auto-load="false">
|
||||
<script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js"></script>
|
||||
<script>
|
||||
Calendly.initInlineWidget({
|
||||
url: 'https://calendly.com/areya/beratung-solar?hide_gdpr_banner=1',
|
||||
prefill: {
|
||||
name: "{{session()->get('entry')['vorname']}} {{session()->get('entry')['nachname']}}",
|
||||
email: "{{session()->get('entry')['email']}}",
|
||||
location: "4916098200321"
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
</div>
|
||||
<!-- Calendly inline widget end -->
|
||||
|
||||
|
||||
</div>
|
||||
@else
|
||||
<br>
|
||||
|
@ -230,8 +195,6 @@
|
|||
<svg style="fill: currentColor; width: 19px; margin-left: 4px; margin-bottom: 4px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M564.907 196.35L388.91 12.366C364.216-13.45 320 3.746 320 40.016v88.154C154.548 130.155 0 160.103 0 331.19c0 94.98 55.84 150.231 89.13 174.571 24.233 17.722 58.021-4.992 49.68-34.51C100.937 336.887 165.575 321.972 320 320.16V408c0 36.239 44.19 53.494 68.91 27.65l175.998-184c14.79-15.47 14.79-39.83-.001-55.3zm-23.127 33.18l-176 184c-4.933 5.16-13.78 1.73-13.78-5.53V288c-171.396 0-295.313 9.707-243.98 191.7C72 453.36 32 405.59 32 331.19 32 171.18 194.886 160 352 160V40c0-7.262 8.851-10.69 13.78-5.53l176 184a7.978 7.978 0 0 1 0 11.06z"/></svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -75,8 +75,10 @@
|
|||
|
||||
<h2 class="h5">Bildernachweis</h2>
|
||||
Die Bilder, Fotos und Grafiken auf dieser Webseite sind urheberrechtlich geschützt.
|
||||
Die Bilderrechte liegen bei den folgenden Fotografen und Unternehmen:
|
||||
• Paul Braunstorfer
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
|
||||
</div>
|
||||
|
|
|
@ -85,13 +85,15 @@
|
|||
</div><!-- end .span3 -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="mt-5">
|
||||
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2616.891113063286!2d12.10357687683789!3d49.0126564898375!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x479fc10aad3c56e3%3A0x4e1e3fd12a6be9a3!2sImmobilienverwaltung%20V%C3%B6lkl!5e0!3m2!1sde!2sde!4v1692953660472!5m2!1sde!2sde" width="100%" height="600" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
@stop
|
||||
@section('scripts')
|
||||
|
|
|
@ -0,0 +1,87 @@
|
|||
@extends('template.'.config('settings.template').'.content.master')
|
||||
|
||||
@section('content')
|
||||
|
||||
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1 class="mb-5 mt-5">Über uns</h1>
|
||||
|
||||
<p class="fs-5 mb-5 text-center">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="col-12 mb-5">
|
||||
<img src="https://picsum.photos/2000/600" class="img-fluid rounded">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-12">
|
||||
<p class="fs-5 mb-5">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
|
||||
<p class="fs-5 mb-5">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
|
||||
<p class="fs-5 mb-5">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
|
||||
<p class="fs-5 mb-5">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="row my-5">
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<img src="https://picsum.photos/1000/500" class="img-fluid rounded shadow-sm">
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<img src="https://picsum.photos/1000/500" class="img-fluid rounded shadow-sm">
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<img src="https://picsum.photos/1000/500" class="img-fluid rounded shadow-sm">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@stop
|
||||
@section('scripts')
|
||||
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jscroll/2.4.1/jquery.jscroll.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
|
||||
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.countdown/2.2.0/jquery.countdown.min.js"></script>
|
||||
|
||||
<script src="{{ asset('template/js/fslightbox.js') }}"></script>
|
||||
|
||||
|
||||
@stop
|
|
@ -10,14 +10,134 @@
|
|||
<div class="col-12">
|
||||
<h1 class="mb-5 mt-5">Über uns</h1>
|
||||
|
||||
<p class="fs-5 mb-5 text-center">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="col-12 mb-5">
|
||||
<img src="https://picsum.photos/2000/600" class="img-fluid rounded">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-12">
|
||||
<p class="fs-5 mb-5">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
|
||||
<p class="fs-5 mb-5">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
|
||||
<p class="fs-5 mb-5">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
|
||||
<p class="fs-5 mb-5">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="row my-5">
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<img src="https://picsum.photos/1000/500" class="img-fluid rounded shadow-sm">
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<img src="https://picsum.photos/1000/500" class="img-fluid rounded shadow-sm">
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<img src="https://picsum.photos/1000/500" class="img-fluid rounded shadow-sm">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row my-5">
|
||||
<div class="col-12 col-md-6">
|
||||
<h2 class="mb-3 mt-4">Überschrift 2</h2>
|
||||
|
||||
|
||||
<h3 class="mb-3 mt-4">Überschrift 3</h3>
|
||||
<h4 class="mb-3 mt-4">Überschrift 4</h4>
|
||||
|
||||
|
||||
<p class="fs-5 mb-5">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
|
||||
<p class="fs-5 mb-5">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
|
||||
<p class="fs-5 mb-5">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
|
||||
<p class="fs-5 mb-5">
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium animi architecto commodi consectetur error, est illum incidunt inventore magni numquam officia officiis possimus, quod repudiandae sed sint totam ullam veniam!
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-5 offset-md-1">
|
||||
|
||||
<h2 class="mb-3 mt-4">Überschrift 2</h2>
|
||||
<ul class="fs-5">
|
||||
|
||||
<li class="mb-3 list-unstyled" style="margin-left: -33px;">
|
||||
<svg style="fill: {{$_primary_ci_color}}" width="18" height="18" viewBox="0 0 24 24">
|
||||
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zM8 17l-1.41-1.41L10.17 12L6.59 8.41L8 7l6 6z"/>
|
||||
</svg>
|
||||
lorem ipsum dolor sit amet
|
||||
</li>
|
||||
|
||||
<li class="mb-3 list-unstyled" style="margin-left: -33px;">
|
||||
<svg style="fill: {{$_primary_ci_color}}" width="18" height="18" viewBox="0 0 24 24">
|
||||
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zM8 17l-1.41-1.41L10.17 12L6.59 8.41L8 7l6 6z"/>
|
||||
</svg>
|
||||
lorem ipsum dolor sit amet
|
||||
</li>
|
||||
|
||||
<li class="mb-3 list-unstyled" style="margin-left: -33px;">
|
||||
<svg style="fill: {{$_primary_ci_color}}" width="18" height="18" viewBox="0 0 24 24">
|
||||
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zM8 17l-1.41-1.41L10.17 12L6.59 8.41L8 7l6 6z"/>
|
||||
</svg>
|
||||
lorem ipsum dolor sit amet
|
||||
</li>
|
||||
|
||||
<li class="mb-3 list-unstyled" style="margin-left: -33px;">
|
||||
<svg style="fill: {{$_primary_ci_color}}" width="18" height="18" viewBox="0 0 24 24">
|
||||
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zM8 17l-1.41-1.41L10.17 12L6.59 8.41L8 7l6 6z"/>
|
||||
</svg>
|
||||
lorem ipsum dolor sit amet
|
||||
</li>
|
||||
|
||||
<li class="mb-3 list-unstyled" style="margin-left: -33px;">
|
||||
<svg style="fill: {{$_primary_ci_color}}" width="18" height="18" viewBox="0 0 24 24">
|
||||
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zM8 17l-1.41-1.41L10.17 12L6.59 8.41L8 7l6 6z"/>
|
||||
</svg>
|
||||
lorem ipsum dolor sit amet
|
||||
</li>
|
||||
|
||||
<li class="mb-3 list-unstyled" style="margin-left: -33px;">
|
||||
<svg style="fill: {{$_primary_ci_color}}" width="18" height="18" viewBox="0 0 24 24">
|
||||
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zM8 17l-1.41-1.41L10.17 12L6.59 8.41L8 7l6 6z"/>
|
||||
</svg>
|
||||
lorem ipsum dolor sit amet
|
||||
</li>
|
||||
|
||||
<li class="mb-3 list-unstyled" style="margin-left: -33px;">
|
||||
<svg style="fill: {{$_primary_ci_color}}" width="18" height="18" viewBox="0 0 24 24">
|
||||
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zM8 17l-1.41-1.41L10.17 12L6.59 8.41L8 7l6 6z"/>
|
||||
</svg>
|
||||
lorem ipsum dolor sit amet
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
@ -25,6 +145,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -26,45 +26,7 @@
|
|||
"required": 0,
|
||||
"default_value": ""
|
||||
},
|
||||
{
|
||||
"name": "Ausführung",
|
||||
"type": "select",
|
||||
"position": 3,
|
||||
"required": 0,
|
||||
"default_value": "",
|
||||
"options": [
|
||||
"Teleskoptribüne",
|
||||
"Butterfly-Tribüne",
|
||||
"Klapptribüne",
|
||||
"Mobile Tribüne"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Kapazität",
|
||||
"type": "number",
|
||||
"attr": {
|
||||
"max": "100000",
|
||||
"min": "0",
|
||||
"step": "1"
|
||||
},
|
||||
"position": 4,
|
||||
"required": 0,
|
||||
"default_value": ""
|
||||
},
|
||||
{
|
||||
"name": "Besonderheiten",
|
||||
"type": "select-multiple",
|
||||
"position": 5,
|
||||
"required": 0,
|
||||
"default_value": "",
|
||||
"options": [
|
||||
"Frontbande",
|
||||
"Pneumatisch",
|
||||
"Luftgefedert",
|
||||
"Einzelsitze",
|
||||
"Motorisch ausfahrbar"
|
||||
]
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Bilder",
|
||||
"type": "image",
|
||||
|
@ -74,26 +36,8 @@
|
|||
"position": 6,
|
||||
"required": 0,
|
||||
"default_value": ""
|
||||
},
|
||||
{
|
||||
"name": "Leistungen",
|
||||
"type": "select-multiple",
|
||||
"position": 7,
|
||||
"required": 0,
|
||||
"default_value": "",
|
||||
"options": [
|
||||
"Wartung",
|
||||
"Bühnenbau",
|
||||
"Bühnentechnik"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Farbe",
|
||||
"type": "color",
|
||||
"position": 8,
|
||||
"required": 0,
|
||||
"default_value": ""
|
||||
}
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -210,12 +154,12 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"slug": "jobs",
|
||||
"slug": "job",
|
||||
"name": "Jobs",
|
||||
"description": "Offene Stellenangebote",
|
||||
"icon": "/font-awesome/light/suitcase.svg",
|
||||
"status": 1,
|
||||
"blade": "undefined",
|
||||
"blade": "job",
|
||||
"fields": []
|
||||
}
|
||||
]
|
|
@ -22,6 +22,14 @@
|
|||
"Leistungen"
|
||||
]
|
||||
},
|
||||
{
|
||||
"slug": "jobs",
|
||||
"name": "jobs",
|
||||
"blade": "jobs",
|
||||
"content_types": [
|
||||
"Jobs"
|
||||
]
|
||||
},
|
||||
{
|
||||
"slug": "aktuelles",
|
||||
"name": "Aktuelles",
|
||||
|
|
|
@ -95,13 +95,15 @@
|
|||
{
|
||||
"name": "Primary CI Color",
|
||||
"type": "color",
|
||||
"value" : "#e62b25",
|
||||
"value" : "#1a5fb4",
|
||||
"required": true
|
||||
|
||||
},
|
||||
{
|
||||
"name": "Secondary CI Color",
|
||||
"type": "color"
|
||||
"type": "color",
|
||||
"value": "#1c71d8",
|
||||
"required" : true
|
||||
},
|
||||
|
||||
{
|
||||
|
@ -114,6 +116,7 @@
|
|||
{
|
||||
"name": "Secondary Background Color",
|
||||
"type": "color",
|
||||
"value": "#f6f5f4",
|
||||
"required": true
|
||||
|
||||
},
|
||||
|
@ -121,7 +124,7 @@
|
|||
{
|
||||
"name": "Primary Link Color",
|
||||
"type": "color",
|
||||
"value" : "#e62b25",
|
||||
"value" : "#1c71d8",
|
||||
"required": true
|
||||
|
||||
|
||||
|
@ -129,7 +132,7 @@
|
|||
{
|
||||
"name": "Secondary Link Color",
|
||||
"type": "color",
|
||||
"value" : "#1862A8",
|
||||
"value" : "#1862a8",
|
||||
"required": true
|
||||
|
||||
|
||||
|
@ -138,7 +141,7 @@
|
|||
{
|
||||
"name": "Footer Color",
|
||||
"type": "color",
|
||||
"value" : "#ffffff",
|
||||
"value" : "#f6f5f4",
|
||||
"required": true
|
||||
|
||||
|
||||
|
@ -165,7 +168,7 @@
|
|||
{
|
||||
"name": "Menue Background Color",
|
||||
"type": "color",
|
||||
"value" : "#ffffff",
|
||||
"value" : "#f6f5f4",
|
||||
"required": true
|
||||
|
||||
|
||||
|
@ -174,7 +177,7 @@
|
|||
{
|
||||
"name": "Footer Background Color",
|
||||
"type": "color",
|
||||
"value" : "#ffffff",
|
||||
"value" : "#1a5fb4",
|
||||
"required": true
|
||||
|
||||
|
||||
|
@ -183,11 +186,20 @@
|
|||
{
|
||||
"name": "Title Color",
|
||||
"type": "color",
|
||||
"value" : "#e62b25",
|
||||
"value" : "#1a5fb4",
|
||||
"description": "Farbe für Überschriften",
|
||||
"required": true
|
||||
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Contact Bar",
|
||||
"type": "boolean",
|
||||
"description": "Eine Infobar am oberen Rand der Homepage, welche Standort und Telefonnummer anzeigt.",
|
||||
"required": true
|
||||
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue