preparing for release
parent
6ee31dfdd9
commit
34ee58ccdd
|
@ -0,0 +1,243 @@
|
||||||
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
|
@section('head')
|
||||||
|
<link rel="stylesheet" href="{{ asset('template/css/intlTelInput.min.css') }}">
|
||||||
|
@stop
|
||||||
|
@section('content')
|
||||||
|
<link rel="stylesheet" href="{{ asset('template/css/pages/news.css') }}">
|
||||||
|
<span id="database" data-new-id="{{$content->id}}" data-new-url="{{route_content($content)}}" data-new-title="{{$content->title}}" data-new-date="{{date('Y-m-d h:i:s', strtotime($content->created_at))}}" data-author-url="{{route('author.get', [$content->user->slug])}}" data-author-name="{{$content->user->name}}" data-author-image="{{$content->user->gravatar()}}"></span>
|
||||||
|
<div class="container">
|
||||||
|
<!-- Modal -->
|
||||||
|
@isset($form)
|
||||||
|
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h5 class="modal-title" id="exampleModalLabel">Bewerbung: {{$content->title}}</h5>
|
||||||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<?php
|
||||||
|
$form = \App\Models\Form::find(1); // ID FORM DATABASE
|
||||||
|
?>
|
||||||
|
<style>
|
||||||
|
label {
|
||||||
|
padding-bottom: 4px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<form method="post" action="{{ route('send-form', [$form->id]) }}" id="formPost" enctype="multipart/form-data" autocomplete="on">
|
||||||
|
@csrf
|
||||||
|
<input type="hidden" name="nach_title" value="{{ $content->title }}" />
|
||||||
|
<input type="hidden" name="email_to" value="{{ $content->user->email }}" />
|
||||||
|
<div class="form-group" style="margin-bottom: 25px; display: block;">
|
||||||
|
<label for="field8">Anrede: <span style="color: red">*</span></label>
|
||||||
|
<select class="form-select" aria-label="Anrede" id="field8" name="fields[8]" required>
|
||||||
|
<option selected disabled>Bitte wählen</option>
|
||||||
|
<option value="Herr">Herr</option>
|
||||||
|
<option value="Frau">Frau</option>
|
||||||
|
<option value="Divers">Divers</option>
|
||||||
|
<option value="keine Angabe">keine Angabe</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<div class="form-group" style="margin-bottom: 25px; display: block;">
|
||||||
|
<label for="field1">Vorname Nachname: <span style="color: red">*</span></label>
|
||||||
|
<input type="text" class="form-control" id="field1" name="fields[1]" placeholder="Max Mustermann" required>
|
||||||
|
</div>
|
||||||
|
<div class="form-group" style="margin-bottom: 25px; display: block;">
|
||||||
|
<label for="field7">E-Mail: <span style="color: red">*</span></label>
|
||||||
|
<br>
|
||||||
|
<input type="email" class="form-control" id="field7" name="fields[7]" placeholder="max.mustermann@example.de" required>
|
||||||
|
</div>
|
||||||
|
<div class="form-group" style="margin-bottom: 25px; display: block;">
|
||||||
|
<label for="field2">Telefon:</label>
|
||||||
|
<br>
|
||||||
|
<input type="tel" class="form-control phone" id="field2" name="fields[2]">
|
||||||
|
</div>
|
||||||
|
<div class="form-group" style="margin-bottom: 25px;">
|
||||||
|
<label for="field5">Möglichkeit zum Upload eines Lebenslaufs:</label>
|
||||||
|
<label for="field5" style="font-size: 11px; font-family: initial;">
|
||||||
|
Maximal 4MB. Dateiformate: .pdf, .doc, .txt, .jpg, .png.
|
||||||
|
</label>
|
||||||
|
<input accept=".txt,.pdf,.doc,.jpg,.png" type="file" name="fields[5]" id="field5" placeholder="Anhänge" style="height: 125px;border: 1px dashed #e7cf84;background-color: #fff3cd6b; padding-left: 30px; padding-top: 50px; width: 100%;">
|
||||||
|
</div>
|
||||||
|
<div class="form-group d-none">
|
||||||
|
<label for="field3">Job</label>
|
||||||
|
<input type="text" class="form-control" id="field3" name="fields[3]" required value="{{$content->title}}">
|
||||||
|
</div>
|
||||||
|
<div class="form-group d-none">
|
||||||
|
<label for="field4">Firma</label>
|
||||||
|
<input type="text" class="form-control" id="field4" name="fields[4]" required value="{{$content->user->name}}">
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 form-check">
|
||||||
|
<input type="checkbox" class="form-check-input" id="exampleCheck1" required>
|
||||||
|
<label class="form-check-label" for="exampleCheck1" style="font-size: 11px; font-family: initial;">
|
||||||
|
Ich stimme zu, dass die oben erhobenen Daten verarbeitet und zur Weiterleitung an {{$content->user->name}} genutzt werden dürfen.
|
||||||
|
Ich bestätige, dass ich mit den <a href="{{url('/datenschutz')}}" style="color:#f49c35; text-decoration: underline" target="_blank">Datenschutzerklärung</a> einverstanden bin.
|
||||||
|
Ich kann meine Einwilligung selbstverständlich jederzeit widerrufen.
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<span style="color: red" style="font-size: 11px;">*</span> <i style="font-size: 11px; font-family: initial;">Pflichtfeld</i>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="submit" class="btn btn-primary">
|
||||||
|
Bewerbung abschicken <i class="fal fa-envelope"></i>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endisset
|
||||||
|
|
||||||
|
|
||||||
|
@if(session()->has('success'))
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<div class="alert alert-success">
|
||||||
|
Bewerbung erfolgreich übermittelt!
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
fbq('track', 'SubmitApplication');
|
||||||
|
gtag('event', 'Application submitted', {
|
||||||
|
'event_category': '{{$content->title}}'
|
||||||
|
});
|
||||||
|
gtag('event', 'Application submitted', {
|
||||||
|
'event_category': '{{$content->title}}',
|
||||||
|
'event_label': '-'
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
@endif
|
||||||
|
<div class="row" style="padding-top:20px;">
|
||||||
|
<div class="col-12 col-md-9 hidden-md text-center">{{$content->user->name}} sucht zur Anstellung einen / eine:
|
||||||
|
<br>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row" style="padding-top:20px; padding-bottom: 20px;">
|
||||||
|
|
||||||
|
<div class="col-3 col-md-1 d-flex align-items-center">
|
||||||
|
|
||||||
|
<img src="{{ $content->user->gravatar() }}" class="rounded border img-fluid" alt="Logo {{$content->user->name}}">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-md-11 d-flex align-items-center">
|
||||||
|
<h1 class="h2">{{$content->title}}</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-6 text-muted small">
|
||||||
|
Veröffentlicht: {{date('d.m.Y', strtotime($content->created_at))}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
<div class="col-12 col-lg-9">
|
||||||
|
|
||||||
|
@if ($content->image)
|
||||||
|
<br>
|
||||||
|
<img src="{{ asset('uploads/' . $content->image) }}" class="img-fluid">
|
||||||
|
<br>
|
||||||
|
@endif
|
||||||
|
<br>
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="col-12">
|
||||||
|
<br>
|
||||||
|
<svg style="width: 14px; fill: #d0504f" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
|
||||||
|
<!-- Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) -->
|
||||||
|
<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" />
|
||||||
|
</svg>
|
||||||
|
92714 Pleystein
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
h2 {
|
||||||
|
font-size: 1.4rem;
|
||||||
|
padding-top: 55px;
|
||||||
|
}
|
||||||
|
h5 {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12">
|
||||||
|
<h2 class="h4">Stellenbeschreibung</h2>
|
||||||
|
{!! isset($content->data_fields['stellenbeschreibung']) ? $content->data_fields['stellenbeschreibung'] : 'keine Angaben' !!}
|
||||||
|
</div>
|
||||||
|
<div class="col-12">
|
||||||
|
<h2 class="h4">Ihre Qualifikationen</h2>
|
||||||
|
{!! isset($content->data_fields['bewerberqualifikation']) ? $content->data_fields['bewerberqualifikation'] : 'keine Angaben' !!}
|
||||||
|
</div>
|
||||||
|
<div class="col-12">
|
||||||
|
<h2 class="h4">{{$content->user->name}} als Arbeitgeber</h2>
|
||||||
|
{!! isset($content->data_fields['wir_als_arbeitgeber']) ? $content->data_fields['wir_als_arbeitgeber'] : 'keine Angaben' !!}
|
||||||
|
</div>
|
||||||
|
@isset ($content->data_fields['bewerbunginfo'])
|
||||||
|
<div class="col-12">
|
||||||
|
<h2 class="h4">Infos zur Bewerbung</h2>
|
||||||
|
{!! isset($content->data_fields['bewerbunginfo']) ? $content->data_fields['bewerbunginfo'] : 'keine Angaben' !!}
|
||||||
|
</div>
|
||||||
|
@endisset
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<a class="btn btn-lg btn-ci" href="{{url('/kontakt')}}">
|
||||||
|
<svg style="fill: currentColor; width: 20px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"/></svg>
|
||||||
|
Jetzt online Bewerbung einreichen
|
||||||
|
</a>
|
||||||
|
<br>
|
||||||
|
<small class="text-muted" style="margin-left: 115px;">1 min Bewerbung</small>
|
||||||
|
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@stop
|
||||||
|
@section('scripts')
|
||||||
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
|
||||||
|
<script>
|
||||||
|
const shareData = {
|
||||||
|
title: "{{ $content->title }}",
|
||||||
|
text: 'Text',
|
||||||
|
url: window.location.href,
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script src="{{ asset('template/js/pages/news/methods.js') }}"></script>
|
||||||
|
<script src="{{ asset('template/js/pages/news/events.js') }}"></script>
|
||||||
|
<script src="{{ asset('template/js/pages/news/script.js') }}"></script>
|
||||||
|
<script src="{{ asset('system/js/intlTelInput.min.js') }}"></script>
|
||||||
|
<script>
|
||||||
|
var input = document.querySelector(".phone");
|
||||||
|
var iti = window.intlTelInput(input, {
|
||||||
|
initialCountry: "de",
|
||||||
|
geoIpLookup: function(callback) {
|
||||||
|
$.get('https://ipinfo.io', function() {}, "jsonp").always(function(resp) {
|
||||||
|
var countryCode = (resp && resp.country) ? resp.country : "us";
|
||||||
|
callback(countryCode);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
utilsScript: "https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.11/js/utils.min.js",
|
||||||
|
// any initialisation options go here
|
||||||
|
});
|
||||||
|
$("#formPost").submit(function() {
|
||||||
|
if (iti.isValidNumber() == false) {
|
||||||
|
alert('Telefonnummer nicht gültig!');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
@stop
|
|
@ -0,0 +1,97 @@
|
||||||
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
|
@section('head')
|
||||||
|
<link rel="stylesheet" href="{{ asset('template/css/intlTelInput.min.css') }}">
|
||||||
|
@stop
|
||||||
|
@section('content')
|
||||||
|
<link rel="stylesheet" href="{{ asset('template/css/pages/news.css') }}">
|
||||||
|
<span id="database" data-new-id="{{$content->id}}" data-new-url="{{route_content($content)}}" data-new-title="{{$content->title}}" data-new-date="{{date('Y-m-d h:i:s', strtotime($content->created_at))}}" data-author-url="{{route('author.get', [$content->user->slug])}}" data-author-name="{{$content->user->name}}" data-author-image="{{$content->user->gravatar()}}"></span>
|
||||||
|
<div class="container">
|
||||||
|
<!-- Modal -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row" style="padding-top:20px; padding-bottom: 20px;">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="col-9 col-md-11 d-flex">
|
||||||
|
<h1 class="mt-4 mb-3">{{$content->title}}</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-6 text-muted small">
|
||||||
|
Veröffentlicht: {{date('d.m.Y', strtotime($content->created_at))}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
<div class="col-12 col-lg-9">
|
||||||
|
|
||||||
|
@if ($content->image)
|
||||||
|
<br>
|
||||||
|
<img src="{{ asset('uploads/' . $content->image) }}" class="img-fluid">
|
||||||
|
<br>
|
||||||
|
@endif
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<div class="col-12">
|
||||||
|
{!! isset($content->data_fields['neuigkeit']) ? $content->data_fields['neuigkeit'] : 'keine Angaben' !!}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@stop
|
||||||
|
@section('scripts')
|
||||||
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
|
||||||
|
<script>
|
||||||
|
const shareData = {
|
||||||
|
title: "{{ $content->title }}",
|
||||||
|
text: 'Text',
|
||||||
|
url: window.location.href,
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script src="{{ asset('template/js/pages/news/methods.js') }}"></script>
|
||||||
|
<script src="{{ asset('template/js/pages/news/events.js') }}"></script>
|
||||||
|
<script src="{{ asset('template/js/pages/news/script.js') }}"></script>
|
||||||
|
<script src="{{ asset('system/js/intlTelInput.min.js') }}"></script>
|
||||||
|
<script>
|
||||||
|
var input = document.querySelector(".phone");
|
||||||
|
var iti = window.intlTelInput(input, {
|
||||||
|
initialCountry: "de",
|
||||||
|
geoIpLookup: function(callback) {
|
||||||
|
$.get('https://ipinfo.io', function() {}, "jsonp").always(function(resp) {
|
||||||
|
var countryCode = (resp && resp.country) ? resp.country : "us";
|
||||||
|
callback(countryCode);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
utilsScript: "https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.11/js/utils.min.js",
|
||||||
|
// any initialisation options go here
|
||||||
|
});
|
||||||
|
$("#formPost").submit(function() {
|
||||||
|
if (iti.isValidNumber() == false) {
|
||||||
|
alert('Telefonnummer nicht gültig!');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
@stop
|
|
@ -1,25 +1,17 @@
|
||||||
<footer class="bg-ci">
|
<footer class="bg-ci">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-md-6">
|
|
||||||
Diese Seite benutzt <a href="https://www.areya.de/software/cms">Areya CMS <i class="fal fa-external-link"></i></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="col-12 col-md-6 text-right">
|
<div class="col-12 col-md-6 text-right">
|
||||||
|
|
||||||
<a href="{{url('/datenschutz')}}">Datenschutz</a> |
|
<a href="{{url('/datenschutz')}}">Datenschutzd</a> |
|
||||||
<a href="{{url('/impressum')}}">Impressum</a>
|
<a href="{{url('/impressum')}}">Impressum</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<!-- Scripts -->
|
|
||||||
|
|
||||||
|
|
||||||
<script src="{{asset('template/js/jquery-3.2.1.min.js')}}"></script>
|
|
||||||
<script src="{{asset('template/js/bootstrap.js')}}"></script>
|
|
||||||
<script src="https://kit.fontawesome.com/220c42e48b.js" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,31 +1,48 @@
|
||||||
@extends('template.'.config('settings.template').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
<section class="header">
|
|
||||||
<img src="{{asset('template/images/header-startseite.jpg')}}" style="width: 100%; margin-top: -6%" alt="">
|
<div class="container">
|
||||||
<div class="container">
|
<section class="header">
|
||||||
<div class="box__header box__header--startseite">
|
|
||||||
<div class="wrapper__box wrapper__box--startseite">
|
<img src="{{asset('template/images/header-startseite.jpg')}}" class="img-fluid" alt="">
|
||||||
<div class="wrapper__box__img">
|
<div class="container">
|
||||||
<img src="{{asset('template/images/logo-color.png')}}" class="img-logo" alt="">
|
<div class="box__header box__header--startseite">
|
||||||
</div>
|
<div class="wrapper__box wrapper__box--startseite">
|
||||||
<div class="wrapper__box__text">
|
<div class="wrapper__box__img">
|
||||||
|
<img src="{{asset('template/images/logo-color.png')}}" class="img-logo" alt="">
|
||||||
|
</div>
|
||||||
|
<div class="wrapper__box__text">
|
||||||
<span class="wrapper__box__text--default">
|
<span class="wrapper__box__text--default">
|
||||||
Pflegeheim Pleystein
|
Pflegeheim Pleystein
|
||||||
</span>
|
</span>
|
||||||
<span class="wrapper__box__text--large">
|
<span class="wrapper__box__text--large">
|
||||||
WOHNEN AM KREUZBERG
|
WOHNEN AM KREUZBERG
|
||||||
</span>
|
</span>
|
||||||
<span class="wrapper__box__text--small">
|
<span class="wrapper__box__text--small">
|
||||||
Ein Zuhause in Wärme und Geborgenheit
|
Ein Zuhause in Wärme und Geborgenheit
|
||||||
</span>
|
</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
</section>
|
</div>
|
||||||
|
|
||||||
<section class="article section__margin--top">
|
<section class="article section__margin--top">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="col-12 mb-4">
|
||||||
|
<div class="alert alert-success" role="alert">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="bi bi-exclamation-triangle-fill flex-shrink-0 me-2" viewBox="0 0 16 16" role="img" aria-label="Warning:">
|
||||||
|
<path d="M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"/>
|
||||||
|
</svg>
|
||||||
|
Ab sofort gilt nach Infektionschutzgesetz eine Testpflicht bei Betreten der Wohnanlage! <a href="#" class="alert-link">Mehr Infos</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="col-12 col-md-8">
|
<div class="col-12 col-md-8">
|
||||||
<article>
|
<article>
|
||||||
<div class="article-title">
|
<div class="article-title">
|
||||||
|
@ -77,6 +94,8 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<h2 id="aktuelles">Aktuelles</h2>
|
<h2 id="aktuelles">Aktuelles</h2>
|
||||||
<br>
|
<br>
|
||||||
|
@ -84,9 +103,9 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@foreach(filterByContentType($mdContents, "News")->take(3) as $content)
|
@foreach(filterByContentType($mdContents, "News")->take(3) as $content)
|
||||||
<div class="col-12">
|
<div class="col-12 col-md-6 col-lg-4 mb-4">
|
||||||
|
|
||||||
<div class="card h-100 shadow-lg" id="news-{{$content->id}}">
|
<div class="card h-100 shadow-lg" id="news-{{$content->id}}" style="background-color: #fff8f05e">
|
||||||
|
|
||||||
@if ($content->image)
|
@if ($content->image)
|
||||||
<img src="{{ asset('uploads/' . $content->image) }}" class="card-img-top">
|
<img src="{{ asset('uploads/' . $content->image) }}" class="card-img-top">
|
||||||
|
@ -95,7 +114,7 @@
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<h5 class="card-title">{{$content->title}}</h5>
|
<h5 class="card-title">{{$content->title}}</h5>
|
||||||
<h6 class="card-subtitle mb-2">
|
<h6 class="card-subtitle mb-2">
|
||||||
<i style="font-weight: normal " class="text-dark"">{{date('d.m.Y H:i', strtotime($content->created_at))}}</i>
|
<div class=" small text-muted"">{{date('d.m.Y H:i', strtotime($content->created_at))}}</div>
|
||||||
</h6>
|
</h6>
|
||||||
|
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
|
@ -103,6 +122,15 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="card-footer text-end">
|
||||||
|
<a class="btn btn-sm btn-ci" href="{{ route_content($content) }}" 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>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -126,43 +154,40 @@
|
||||||
<div class="full__image-content--text">
|
<div class="full__image-content--text">
|
||||||
<p>Die Würde des Menschen ist unantastbar.<br/>Sie achten und zu schützen ist unsere Verpflichtung!</p>
|
<p>Die Würde des Menschen ist unantastbar.<br/>Sie achten und zu schützen ist unsere Verpflichtung!</p>
|
||||||
</div>
|
</div>
|
||||||
<a href="{{url('pflegeleitbild')}}" class="btn btn-home">Unser Pflegeleitbild »</a>
|
<a href="{{url('pflegeleitbild')}}" class="btn btn-lg btn-primary">Unser Pflegeleitbild »</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="teaser">
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row mb-5">
|
||||||
<div class="col-12 col-md-6">
|
<div class="col-12 col-md-6 col-lg-4 mb-4">
|
||||||
<div class="card" style="width: 100%;">
|
<div class="card">
|
||||||
<img class="card-img-top" src="{{asset('template/images/teaser-01.jpg')}}" alt="">
|
<img class="card-img-top" src="{{asset('template/images/teaser-01.jpg')}}" alt="">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<h5 class="card-title">WOHNEN BEI UNS</h5>
|
<h5 class="card-title">WOHNEN BEI UNS</h5>
|
||||||
<p class="card-text">Der Erhalt der Lebensqualität liegt uns am Herzen.</p>
|
<p class="card-text">Der Erhalt der Lebensqualität liegt uns am Herzen.</p>
|
||||||
<a href="{{asset('wohnen')}}" class="btn btn-home float-right">mehr</a>
|
<a href="{{asset('wohnen')}}" class="btn btn-sm btn-home float-end">mehr</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="col-12 col-md-6 col-lg-4 mb-4">
|
||||||
|
<div class="card">
|
||||||
|
<img class="card-img-top" src="{{asset('template/images/teaser-02.jpg')}}" alt="">
|
||||||
|
<div class="card-body">
|
||||||
|
<h5 class="card-title">AUSSENANLAGEN</h5>
|
||||||
|
<p class="card-text">Unsere gemütliche Sonnenterrasse lädt zum Verweilen ein.</p>
|
||||||
|
<a href="{{url('aussenanlagen')}}" class="btn btn-sm btn-home float-end">mehr</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<div class="col-12 col-md-6">
|
|
||||||
<div class="card" style="width: 100%;">
|
|
||||||
<img class="card-img-top" src="{{asset('template/images/teaser-02.jpg')}}" alt="">
|
|
||||||
<div class="card-body">
|
|
||||||
<h5 class="card-title">AUSSENANLAGEN</h5>
|
|
||||||
<p class="card-text">Unsere gemütliche Sonnenterrasse lädt zum Verweilen ein.</p>
|
|
||||||
<a href="{{url('aussenanlagen')}}" class="btn btn-home float-right">mehr</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
@stop
|
@stop
|
||||||
|
|
|
@ -2,72 +2,91 @@
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<section class="header">
|
||||||
|
<img src="{{asset('template/images/header-preise.jpg')}}" style="width: 100%;" alt="">
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="col-12">
|
<div class="row">
|
||||||
|
|
||||||
<br><br>
|
|
||||||
<h1>Aktuelles</h1>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
@foreach($nachrichten as $nach)
|
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
|
<h1 class="mb-5 mt-3">Aktuelles</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@foreach($contents as $content)
|
||||||
|
<div class="col-12 col-md-6 col-lg-4 mb-4">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="card h-100 shadow-lg" id="news-{{$nach->id}}">
|
<div class="card h-100 shadow-lg mb-4" id="news-{{$content->id}}">
|
||||||
|
|
||||||
@if ($nach->image)
|
@if ($content->image)
|
||||||
<img src="{{ asset('uploads/' . $nach->image) }}" class="card-img-top">
|
<img src="{{ asset('uploads/' . $content->image) }}" class="card-img-top">
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
|
|
||||||
|
|
||||||
<h5 class="card-title">{{$nach->title}}</h5>
|
<h4 class="card-title">{{$content->title}}</h4>
|
||||||
|
|
||||||
<h6 class="card-subtitle mb-2">
|
<h6 class="card-subtitle mb-2">
|
||||||
|
|
||||||
<i style="font-weight: normal " class="text-dark"">{{date('d.m.Y H:i', strtotime($nach->created_at))}}</i>
|
<div class=" small text-muted"">{{date('d.m.Y H:i', strtotime($content->created_at))}}</div>
|
||||||
|
|
||||||
</h6>
|
</h6>
|
||||||
|
|
||||||
|
<p class="card-text">
|
||||||
|
{!! strIsset($content->data_fields['neuigkeit'], 'keine Angaben') !!}
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card-footer text-end">
|
||||||
|
<a class="btn btn-sm btn-ci" href="{{ route_content($content) }}" 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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p class="card-text">
|
|
||||||
{!! isset($nach->additional_fields['1']) ? $nach->additional_fields['1'] : 'keine Angaben' !!}
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
@endforeach
|
||||||
|
|
||||||
@endforeach
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<section class="header">
|
<div class="container">
|
||||||
|
|
||||||
<img src="{{asset('template/images/header-stellenangebote.jpg')}}" style="width: 100%;" alt="">
|
<img src="{{asset('template/images/header-stellenangebote.jpg')}}" style="width: 100%;" alt="">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="box__header">
|
<div class="box__header">
|
||||||
|
@ -13,58 +14,73 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section class="header">
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
<section class="article">
|
<section class="article">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-md-8">
|
<div class="col-12">
|
||||||
<article>
|
<h2 class="mb-5 mt-2">Unsere aktuellen Stellenangebote</h2>
|
||||||
<div class="article__title">
|
|
||||||
<span>UNSERE STELLENANGEBOTE</span>
|
|
||||||
</div>
|
|
||||||
<div class="article__content">
|
|
||||||
<p>
|
|
||||||
Für unser Haus suchen wir ab sofort in verschiedenen Schichtmodellen:
|
|
||||||
</p>
|
|
||||||
<ul class="article__content--list">
|
|
||||||
<li>Pflegefachkraft und Pflegehelfer (Voll/Teilzeit)</li>
|
|
||||||
<li>Gerontopsychiatrische Fachkraft</li>
|
|
||||||
<li>Betreuungskraft § 87 b</li>
|
|
||||||
<li>Hauswirtschaftliche Kräfte (Reinigung und Küche)</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
in Vollzeit, Teilzeit und auch auf 450 Euro Basis.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Sie sind uns willkommen, wenn Sie:<br/> - über eine ausgeprägte soziale und fachliche Kompetenz verfügen<br/> - ein hohes Einfühlungsvermögen für die Bedürfnisse der Bewohner haben<br/> - Einsatzbereitschaft und Teamfähigkeit
|
|
||||||
besitzen
|
|
||||||
<br/>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Wir bieten Ihnen:<br/> - ein modernes Haus - eine verantwortungsvolle Aufgabe<br/> - Möglichkeiten an Fort- und Weiterbildungen<br/> - eine aufgeschlossene und unterstützende Heim- und Pflegedienstleitung<br/> - Vergütung
|
|
||||||
nach Hausvereinbarung<br/>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Gemäß unserem Pflegeleitbild bieten wir unseren Bewohnern ein Zuhause in Wärme und Geborgenheit. Das gemeinsame Handeln aller Mitarbeiter bestimmt den Hausalltag zum Wohle unserer Bewohner.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Wenn Sie diese Aufgabe interessiert, so richten Sie bitte Ihre aussagekräftige schriftliche Bewerbung an:
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<span class="article__content--contact">
|
|
||||||
Pflegeheim "Wohnen am Kreuzberg"<br> z.Hd. PDL Andrea Neuber<br> Vohenstraußer Str. 7 92714 Pleystein
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</article>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@foreach($contents as $indexContent => $content)
|
||||||
|
|
||||||
|
<div class="col-10 offset-1">
|
||||||
|
<div class="card mb-3" style="background-color: #fff8f05e">
|
||||||
|
<div class="card-body">
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
<div class="col-3 col-lg-1">
|
||||||
|
<a href="{{ route('author.get', [$content->user->slug]) }}" onclick="gtag('event', 'See Employer', {'event_category' : 'List: {{ $list->name }}', 'event_label' : '{{ $content->user->name }}'});">
|
||||||
|
<img src="{{ $content->user->gravatar() }}" title="{{ $content->user->name }}" height="70px" class="border rounded" alt="Logo {{ $content->user->name }}">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-2">
|
||||||
|
<br>
|
||||||
|
<a href="{{ route('author.get', [$content->user->slug]) }}" class="text-muted" onclick="gtag('event', 'See Employer', {'event_category' : 'List: {{ $list->name }}', 'event_label' : '{{ $content->user->name }}'});">
|
||||||
|
|
||||||
|
{{ $content->user->name }}
|
||||||
|
<br>
|
||||||
|
|
||||||
|
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-7">
|
||||||
|
<h5 class="card-title" style="margin-top: 20px;">
|
||||||
|
<a href="{{ route_content($content) }}" class="text-dark">
|
||||||
|
{{$content->title}}
|
||||||
|
</a>
|
||||||
|
</h5>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-7 col-lg-2 text-end ">
|
||||||
|
<br>
|
||||||
|
<a class="btn btn-ci btn-sm" href="{{ route_content($content) }}" onclick="gtag('event', 'See Job', {'event_category' : 'List: {{ $list->name }}', 'event_label' : '{{$content->title}}'});">
|
||||||
|
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" />
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
@endforeach
|
||||||
|
|
||||||
<div class="col-6 col-md-4 explode__note">
|
<div class="col-6 col-md-4 explode__note">
|
||||||
<div class="box__note">
|
<div class="box__note">
|
||||||
<div class="box__note__text">
|
<div class="box__note__text">
|
|
@ -6,8 +6,9 @@
|
||||||
<meta name="viewport" content="width=device-width, user-scalable=no">
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{asset('template/css/app.css')}}">
|
|
||||||
<link rel="stylesheet" href="{{asset('template/css/main.css')}}">
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
|
||||||
|
<link rel="stylesheet" href="{{asset('template/css/main.css?v442')}}">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,27 +43,30 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<nav class="navbar navbar-expand-lg">
|
<nav class="navbar navbar-expand-lg">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<a class="navbar-brand" href="{{url('/')}}">
|
<a class="navbar-brand" href="{{url('/')}}">
|
||||||
<img src="{{asset('template/images/logo.png')}}" width="30" height="30" alt="">
|
<img src="{{asset('template/images/logo-color.png')}}" width="70" height="70" alt="">
|
||||||
</a>
|
</a>
|
||||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
||||||
<img src="{{asset('template/images/icon-menu.png')}}" width="50px" height="50px"/>
|
|
||||||
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#mainmenue" aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
|
||||||
|
<svg style="width: 20px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M436 124H12c-6.627 0-12-5.373-12-12V80c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12zm0 160H12c-6.627 0-12-5.373-12-12v-32c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12zm0 160H12c-6.627 0-12-5.373-12-12v-32c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12z"/></svg>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
<div class="collapse navbar-collapse" id="mainmenue">
|
||||||
<ul class="navbar-nav mr-auto">
|
<ul class="navbar-nav mr-auto">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="{{url('/aktuelles')}}">AKTUELLES</a>
|
<a class="nav-link" href="{{url('/aktuelles')}}">AKTUELLES</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item dropdown">
|
<li class="nav-item dropdown">
|
||||||
<a class="nav-link dropdown-toggle" href="{{url('wohnen')}}" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
▾ EINRICHTUNG
|
<a class="nav-link dropdown-toggle" href="{{url('wohnen')}}" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
EINRICHTUNG
|
||||||
</a>
|
</a>
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
<a class="dropdown-item" href="{{url('pflegeleitbild')}}">PFLEGELEITBILD</a>
|
<a class="dropdown-item" href="{{url('pflegeleitbild')}}">PFLEGELEITBILD</a>
|
||||||
|
@ -89,37 +93,27 @@
|
||||||
@yield('content')
|
@yield('content')
|
||||||
<footer>
|
<footer>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<br>
|
<div class="row">
|
||||||
<div class="float-right">
|
<div class="col-12 col-sm-6 mb-3">
|
||||||
<a href="{{url('datenschutz')}}">Datenschutz</a>
|
Diese Seite benutzt <a href="https://www.areya.de/software/cms">Areya CMS <i class="fal fa-external-link"></i></a>
|
||||||
|
|
|
||||||
<a href="{{url('impressum')}}">Impressum</a>
|
</div>
|
||||||
|
<div class="col-12 col-sm-6 text-end">
|
||||||
|
<a href="{{url('datenschutz')}}">Datenschutz</a>
|
||||||
|
|
|
||||||
|
<a href="{{url('impressum')}}">Impressum</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<script>
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
||||||
$.fn.modal.Constructor.prototype.enforceFocus = function() {
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
|
||||||
modal_this = this
|
|
||||||
$(document).on('focusin.modal', function (e) {
|
|
||||||
if (modal_this.$element[0] !== e.target && !modal_this.$element.has(e.target).length
|
|
||||||
&& !$(e.target.parentNode).hasClass('cke_dialog_ui_input_select')
|
|
||||||
&& !$(e.target.parentNode).hasClass('cke_dialog_ui_input_text')) {
|
|
||||||
modal_this.$element.focus()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
|
||||||
@yield('scripts')
|
@yield('scripts')
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -2,16 +2,20 @@
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<section class="header">
|
<div class="container">
|
||||||
<img src="{{asset('template/images/header-einrichtung.jpg')}}" style="width: 100%;" alt="">
|
<section class="header">
|
||||||
<div class="container box__header">
|
<img src="{{asset('template/images/header-einrichtung.jpg')}}" style="width: 100%;" alt="">
|
||||||
<div class="wrapper__box wrapper__box--einrichtung">
|
<div class="container box__header">
|
||||||
<div class="wrapper__box__text">
|
<div class="wrapper__box wrapper__box--einrichtung">
|
||||||
<span>AUSSENANLAGEN</span>
|
<div class="wrapper__box__text">
|
||||||
|
<span>AUSSENANLAGEN</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
</section>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<section class="article section__margin--top">
|
<section class="article section__margin--top">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -89,7 +93,7 @@
|
||||||
<div class="wrapper__texBox--line"></div>
|
<div class="wrapper__texBox--line"></div>
|
||||||
<p>Die Liebe zu Tieren<br/>ist wie Medizin.</p>
|
<p>Die Liebe zu Tieren<br/>ist wie Medizin.</p>
|
||||||
</div>
|
</div>
|
||||||
<img src="{{asset('template/images/middle-aussenanlagen.jpg')}}" style="width:100%" alt="">
|
<img src="{{asset('template/images/middle-aussenanlagen.jpg')}}" class="img-fluid" alt="">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
|
@ -2,13 +2,11 @@
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="jumbotron">
|
<div class="jumbotron">
|
||||||
<br>
|
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
Datenschutz
|
<h1 class="h2 mt-5 mb-5">Datenschutzinformation wohnen-am-kreuzberg.de</h1>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<br>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -25,7 +23,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<h2>Datenschutzinformation wohnen-am-kreuzberg.de</h2>
|
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Im Folgenden informieren wir Sie über die Verarbeitung Ihrer personenbezogenen
|
Im Folgenden informieren wir Sie über die Verarbeitung Ihrer personenbezogenen
|
||||||
|
@ -64,7 +61,7 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<h2>1) Wer ist für die Datenverarbeitung verantwortlich und an wen kann ich
|
<h2 class="h5 mt-5 mb-3">1) Wer ist für die Datenverarbeitung verantwortlich und an wen kann ich
|
||||||
mich wenden?
|
mich wenden?
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
|
@ -95,7 +92,7 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<h2>2) Welche Quellen und Daten nutzen wir?</h2>
|
<h2 class="h5 mt-5 mb-3">2) Welche Quellen und Daten nutzen wir?</h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Wir verarbeiten personenbezogene Daten, die wir im Rahmen der Nutzung unserer
|
Wir verarbeiten personenbezogene Daten, die wir im Rahmen der Nutzung unserer
|
||||||
|
@ -120,7 +117,7 @@
|
||||||
übersenden (nachstehend „Kontaktdaten“ genannt).
|
übersenden (nachstehend „Kontaktdaten“ genannt).
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2>3) Wofür verarbeiten wir Ihre Daten (Zweck der Verarbeitung) und auf
|
<h2 class="h5 mt-5 mb-3">3) Wofür verarbeiten wir Ihre Daten (Zweck der Verarbeitung) und auf
|
||||||
welcher Rechtsgrundlage?</h2>
|
welcher Rechtsgrundlage?</h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -155,7 +152,7 @@
|
||||||
<td class="tg-0lax">Im Rahmen der<br>Interessenabwägung zur<br>Wahrung berechtigter<br>Interessen, Art. 6 Abs. 1f<br>DSGVO</td>
|
<td class="tg-0lax">Im Rahmen der<br>Interessenabwägung zur<br>Wahrung berechtigter<br>Interessen, Art. 6 Abs. 1f<br>DSGVO</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<h2>4) Wer erhält meine Daten?</h2>
|
<h2 class="h5 mt-5 mb-3">4) Wer erhält meine Daten?</h2>
|
||||||
<p>
|
<p>
|
||||||
Innerhalb des Unternehmens erhalten diejenigen Stellen Zugriff auf Ihre Daten, die
|
Innerhalb des Unternehmens erhalten diejenigen Stellen Zugriff auf Ihre Daten, die
|
||||||
diese zur Erfüllung unserer vertraglichen und gesetzlichen Pflichten benötigen.
|
diese zur Erfüllung unserer vertraglichen und gesetzlichen Pflichten benötigen.
|
||||||
|
@ -201,7 +198,7 @@
|
||||||
Nutzung der Webseite geben wir grundsätzlich keine Daten an Dritte weiter.
|
Nutzung der Webseite geben wir grundsätzlich keine Daten an Dritte weiter.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2>
|
<h2 class="h5 mt-5 mb-3">
|
||||||
5) Wie lange werden meine Daten gespeichert?
|
5) Wie lange werden meine Daten gespeichert?
|
||||||
</h2>
|
</h2>
|
||||||
<p>
|
<p>
|
||||||
|
@ -229,7 +226,7 @@
|
||||||
können, wobei die regelmäßige Verjährungsfrist drei Jahre beträgt.
|
können, wobei die regelmäßige Verjährungsfrist drei Jahre beträgt.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2>6) Werden Daten in ein Drittland oder an eine internationale Organisation
|
<h2 class="h5 mt-5 mb-3">6) Werden Daten in ein Drittland oder an eine internationale Organisation
|
||||||
übermittelt?
|
übermittelt?
|
||||||
</h2>
|
</h2>
|
||||||
<p>
|
<p>
|
||||||
|
@ -245,7 +242,7 @@
|
||||||
sich bei Bedarf an uns über die oben unter Punkt 1 angegebenen Kontaktdaten.
|
sich bei Bedarf an uns über die oben unter Punkt 1 angegebenen Kontaktdaten.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2>7) Welche Datenschutzrechte habe ich?</h2>
|
<h2 class="h5 mt-5 mb-3">7) Welche Datenschutzrechte habe ich?</h2>
|
||||||
<p>
|
<p>
|
||||||
Jede betroffene Person hat:
|
Jede betroffene Person hat:
|
||||||
</p>
|
</p>
|
||||||
|
@ -339,7 +336,7 @@
|
||||||
E-Mail: <a href="mailto:datenschutz@wohnen-am-kreuzberg.de">datenschutz@wohnen-am-kreuzberg.de</a>
|
E-Mail: <a href="mailto:datenschutz@wohnen-am-kreuzberg.de">datenschutz@wohnen-am-kreuzberg.de</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2>
|
<h2 class="h5 mt-5 mb-3">
|
||||||
8) Inwieweit gibt es eine automatisierte Entscheidungsfindung im Einzelfall
|
8) Inwieweit gibt es eine automatisierte Entscheidungsfindung im Einzelfall
|
||||||
einschließlich Profiling?
|
einschließlich Profiling?
|
||||||
</h2>
|
</h2>
|
||||||
|
@ -352,7 +349,7 @@
|
||||||
mit dem Ziel, bestimmte persönliche Aspekte zu bewerten (Profiling).
|
mit dem Ziel, bestimmte persönliche Aspekte zu bewerten (Profiling).
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2>9) Besteht für mich eine Pflicht zur Bereitstellung von Daten?</h2>
|
<h2 class="h5 mt-5 mb-3">9) Besteht für mich eine Pflicht zur Bereitstellung von Daten?</h2>
|
||||||
<p>
|
<p>
|
||||||
Im Rahmen unserer Webseite müssen Sie diejenigen personenbezogenen Daten
|
Im Rahmen unserer Webseite müssen Sie diejenigen personenbezogenen Daten
|
||||||
bereitstellen, die für die Nutzung unserer Webseite technisch bzw. aus IT-Sicherheitsgründen erforderlich sind. Sofern Sie die vorgenannten Daten nicht
|
bereitstellen, die für die Nutzung unserer Webseite technisch bzw. aus IT-Sicherheitsgründen erforderlich sind. Sofern Sie die vorgenannten Daten nicht
|
||||||
|
@ -361,7 +358,7 @@
|
||||||
personenbezogenen Daten bereitstellen, die für die Bearbeitung Ihrer Anfrage
|
personenbezogenen Daten bereitstellen, die für die Bearbeitung Ihrer Anfrage
|
||||||
erforderlich sind. Andernfalls können wir Ihre Anfrage nicht bearbeiten.
|
erforderlich sind. Andernfalls können wir Ihre Anfrage nicht bearbeiten.
|
||||||
</p>
|
</p>
|
||||||
<h2>10) Cookies</h2>
|
<h2 class="h5 mt-5 mb-3">10) Cookies</h2>
|
||||||
<p>
|
<p>
|
||||||
Wir verwenden auf unseren Internetseiten Cookies. Cookies sind kleine Textdateien,
|
Wir verwenden auf unseren Internetseiten Cookies. Cookies sind kleine Textdateien,
|
||||||
die in der Regel aus Buchstaben und Zahlen bestehen und bei Besuch bestimmter
|
die in der Regel aus Buchstaben und Zahlen bestehen und bei Besuch bestimmter
|
||||||
|
@ -404,7 +401,7 @@
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h2>12) Google Analytics</h2>
|
<h2 class="h5 mt-5 mb-3">12) Google Analytics</h2>
|
||||||
<p>
|
<p>
|
||||||
Wir setzen auf Grundlage unserer berechtigten Interessen, d.h. unserem Interesse an
|
Wir setzen auf Grundlage unserer berechtigten Interessen, d.h. unserem Interesse an
|
||||||
der Analyse und Optimierung unserer Webseite den Webanalysedienst Google
|
der Analyse und Optimierung unserer Webseite den Webanalysedienst Google
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
@extends('template.'.config('settings.template').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<section class="header">
|
<div class="container">
|
||||||
<img src="{{asset('template/images/header-einrichtung.jpg')}}" style="width: 100%;" alt="">
|
<img src="{{asset('template/images/header-einrichtung.jpg')}}" style="width: 100%;" alt="">
|
||||||
<div class="container box__header">
|
<div class="container box__header">
|
||||||
<div class="wrapper__box wrapper__box--entstehung">
|
<div class="wrapper__box wrapper__box--entstehung">
|
||||||
|
@ -10,15 +10,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</div>
|
||||||
<section class="article section__margin--top">
|
<section class="article section__margin--top">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-md-8">
|
<div class="col-12 col-md-8">
|
||||||
<article>
|
<article>
|
||||||
<div class="article-title">
|
<h2>ENTSTEHUNG „WOHNEN AM KREUZBERG“</h2>
|
||||||
<span>ENTSTEHUNG „WOHNEN AM KREUZBER“</span>
|
|
||||||
</div>
|
|
||||||
<div class="article-content">
|
<div class="article-content">
|
||||||
<p>
|
<p>
|
||||||
Das Pflegeheim Pleystein "Wohnen am Kreuzberg" ist als privates Altenpflegeheim gebaut worden. Finanziert und ins Leben gerufen wurde es durch die "Freunde der Stadt Pleystein".
|
Das Pflegeheim Pleystein "Wohnen am Kreuzberg" ist als privates Altenpflegeheim gebaut worden. Finanziert und ins Leben gerufen wurde es durch die "Freunde der Stadt Pleystein".
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
@extends('template.'.config('settings.template').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
<section class="header">
|
<div class="container">
|
||||||
<img src="{{asset('template/images/header-kontakt.jpg')}}" alt="" style="width: 100%">
|
<section class="header">
|
||||||
</section>
|
<img src="{{asset('template/images/header-kontakt.jpg')}}" alt="" style="width: 100%">
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
<section class="article">
|
<section class="article">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -14,49 +17,23 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-md-6">
|
<div class="col-12 col-md-6">
|
||||||
<div class="wrapper__contact--location">
|
<div>
|
||||||
<span>
|
|
||||||
Pflegeheim Pleystein GmbH <br/>
|
Pflegeheim Pleystein GmbH <br/>
|
||||||
Wohnen am Kreuzberg<br/>
|
Wohnen am Kreuzberg<br/>
|
||||||
Vohenstraußer Straße 7<br/>
|
Vohenstraußer Straße 7<br/>
|
||||||
92714 Pleystein<br/>
|
92714 Pleystein<br/>
|
||||||
</span>
|
|
||||||
<p class="space__top">
|
|
||||||
Tel.: 09654 9223-0<br/> Fax: 09654 9223-30
|
Tel.: 09654 9223-0<br/> Fax: 09654 9223-30
|
||||||
<br/> Mail: wohnen-am-kreuzberg@t-online.de
|
<br/> Mail: wohnen-am-kreuzberg@t-online.de
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-md-6">
|
|
||||||
<div class="wrapper__form">
|
|
||||||
<h3>Schreiben Sie uns eine Nachricht:</h3>
|
|
||||||
</div>
|
|
||||||
<form>
|
|
||||||
<div class="form-group">
|
|
||||||
<input type="text" class="form-control" id="name" placeholder="Name">
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<input type="text" class="form-control" id="email" placeholder="E-mail Adresse">
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<textarea class="form-control" rows="3" placeholder="Nachricht" style="height: 227px;"></textarea>
|
|
||||||
</div>
|
|
||||||
<button type="submit" class="btn btn-form">Nachricht senden</button>
|
|
||||||
</form>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col" style="margin-top: -13%">
|
<div class="col">
|
||||||
<div class="wrapper__information--text">
|
<div class="wrapper__information--text">
|
||||||
<p>ANSPRECHAPTNER</p>
|
<p>ANSPRECHAPTNER</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -2,16 +2,20 @@
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<section class="header">
|
<div class="container">
|
||||||
<img src="{{asset('template/images/header-einrichtung.jpg')}}" style="width: 100%;" alt="">
|
<section class="header">
|
||||||
<div class="container box__header">
|
<img src="{{asset('template/images/header-einrichtung.jpg')}}" style="width: 100%;" alt="">
|
||||||
<div class="wrapper__box wrapper__box--entstehung">
|
<div class="container box__header">
|
||||||
<div class="wrapper__box__text">
|
<div class="wrapper__box wrapper__box--entstehung">
|
||||||
<span>MITARBEITER</span>
|
<div class="wrapper__box__text">
|
||||||
|
<span>MITARBEITER</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
</section>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<section class="article section__margin--top">
|
<section class="article section__margin--top">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -66,7 +70,7 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<img src="{{asset('template/images/middle-mitarbeiter.jpg')}}" style="width: 100%" alt="">
|
<img src="{{asset('template/images/middle-mitarbeiter.jpg')}}" alt="">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -2,24 +2,27 @@
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<section class="header">
|
<div class="container">
|
||||||
<img src="{{asset('template/images/header-einrichtung.jpg')}}" style="width: 100%;" alt="">
|
<section class="header">
|
||||||
<div class="container box__header">
|
<img src="{{asset('template/images/header-einrichtung.jpg')}}" style="width: 100%;" alt="">
|
||||||
<div class="wrapper__box wrapper__box--einrichtung">
|
<div class="container box__header">
|
||||||
<div class="wrapper__box__text">
|
<div class="wrapper__box wrapper__box--einrichtung">
|
||||||
<span>UNSER PFLEGELEITBILD</span>
|
<div class="wrapper__box__text">
|
||||||
|
<span>UNSER PFLEGELEITBILD</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
</section>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<section class="article section__margin--top">
|
<section class="article section__margin--top">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-md-8">
|
<div class="col-12 col-md-8">
|
||||||
<article>
|
<article>
|
||||||
<div class="article-title">
|
|
||||||
<span>UNSER PFLEGELEITBILD</span>
|
<h2 class="color-ci mb-3 ">Unser Pflegeleitbild</h2>
|
||||||
</div>
|
|
||||||
<div class="article-content">
|
<div class="article-content">
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
|
@ -79,7 +82,7 @@
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<img src="{{asset('template/images/middle-einrichtung.jpg')}}" style="width: 100%" alt="">
|
<img src="{{asset('template/images/middle-einrichtung.jpg')}}" alt="">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
|
@ -92,7 +95,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<img src="{{asset('template/images/middle-einrichtung.png')}}" class="middle__img" alt="">
|
<img src="{{asset('template/images/middle-einrichtung.png')}}" style="margin-top: -160px;" alt="">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,14 @@
|
||||||
@extends('template.'.config('settings.template').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<section class="header">
|
|
||||||
<img src="{{asset('template/images/header-preise.jpg')}}" style="width: 100%;" alt="">
|
<div class="container">
|
||||||
</section>
|
<section class="header">
|
||||||
|
<img src="{{asset('template/images/header-preise.jpg')}}" style="width: 100%;" alt="">
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<section class="article section__margin--top">
|
<section class="article section__margin--top">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
|
@ -1,16 +1,20 @@
|
||||||
@extends('template.'.config('settings.template').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<section class="header">
|
|
||||||
<img src="{{asset('template/images/header-wohnen.jpg')}}" style="width: 100%;" alt="">
|
<div class="container">
|
||||||
<div class="container box__header">
|
<section class="header">
|
||||||
<div class="wrapper__box wrapper__box--wohnen">
|
<img src="{{asset('template/images/header-wohnen.jpg')}}" style="width: 100%;" alt="">
|
||||||
<div class="wrapper__box__text">
|
<div class="container box__header">
|
||||||
<span>WOHNEN</span>
|
<div class="wrapper__box wrapper__box--wohnen">
|
||||||
|
<div class="wrapper__box__text">
|
||||||
|
<span>WOHNEN</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
</section>
|
</div>
|
||||||
|
|
||||||
<section class="article section__margin--top">
|
<section class="article section__margin--top">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
47
css/main.css
47
css/main.css
|
@ -53,8 +53,6 @@ textarea {
|
||||||
.space__top {
|
.space__top {
|
||||||
margin-top: 32px; }
|
margin-top: 32px; }
|
||||||
|
|
||||||
.box__header--startseite {
|
|
||||||
margin-top: -23% !important; }
|
|
||||||
|
|
||||||
.wrapper__box--startseite {
|
.wrapper__box--startseite {
|
||||||
width: 640px !important;
|
width: 640px !important;
|
||||||
|
@ -164,9 +162,7 @@ textarea {
|
||||||
.card-text {
|
.card-text {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
text-align: left; }
|
text-align: left; }
|
||||||
.card-title {
|
|
||||||
font-size: 18px;
|
|
||||||
color: #fbbc43; }
|
|
||||||
|
|
||||||
.btn-home {
|
.btn-home {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
@ -320,17 +316,11 @@ td,
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
vertical-align: initial !important; }
|
vertical-align: initial !important; }
|
||||||
|
|
||||||
.navbar-expand-lg .navbar-nav {
|
|
||||||
justify-content: center;
|
|
||||||
/* align-items: center; */
|
|
||||||
/* align-content: center; */
|
|
||||||
width: 100%; }
|
|
||||||
|
|
||||||
.navbar {
|
.navbar {
|
||||||
background-color: #fbbc43; }
|
background-color: #fbbc43; }
|
||||||
|
|
||||||
.nav-item {
|
|
||||||
margin: 0 10px; }
|
|
||||||
|
|
||||||
.nav-link {
|
.nav-link {
|
||||||
color: #ffffff !important;
|
color: #ffffff !important;
|
||||||
|
@ -605,3 +595,36 @@ td,
|
||||||
footer a:hover{
|
footer a:hover{
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.box__header--startseite {
|
||||||
|
margin-top: -14% !important; }
|
||||||
|
|
||||||
|
body{
|
||||||
|
background-color: #e3ddbc2e;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item{
|
||||||
|
font-size: 18px;
|
||||||
|
padding-left: 18;
|
||||||
|
padding-right: 18;
|
||||||
|
padding-top: 6px;
|
||||||
|
padding-bottom: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.navbar-expand-lg .navbar-nav {
|
||||||
|
justify-content: right;
|
||||||
|
/* align-items: center; */
|
||||||
|
/* align-content: center; */
|
||||||
|
width: 100%; }
|
||||||
|
|
||||||
|
|
||||||
|
.card-title {
|
||||||
|
font-size: 19px;
|
||||||
|
color: #fbbc43; }
|
||||||
|
|
||||||
|
|
||||||
|
.btn-ci{
|
||||||
|
background-color: #fbb52f;
|
||||||
|
}
|
163
css/style.css
163
css/style.css
|
@ -1,163 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
section{
|
|
||||||
padding-bottom: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.navbar a {
|
|
||||||
font-size: 22px;
|
|
||||||
font-family: 'Averia Serif Libre', cursive;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.navbar a:hover {
|
|
||||||
text-decoration: 4px black solid;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-light .navbar-nav .nav-link{
|
|
||||||
padding-left: 39px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
p{
|
|
||||||
margin-top: 25px;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
font-size: 18px;
|
|
||||||
text-align: justify;
|
|
||||||
|
|
||||||
|
|
||||||
font-family: 'Open Sans', sans-serif;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
li{
|
|
||||||
|
|
||||||
font-size: 18px;
|
|
||||||
text-align: left;
|
|
||||||
|
|
||||||
|
|
||||||
font-family: 'Open Sans', sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ul {
|
|
||||||
list-style-image: url('https://path.areya.de/images/ul.png');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.card-text{
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer{
|
|
||||||
padding-top: 60px;
|
|
||||||
min-height: 125px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-logo{
|
|
||||||
|
|
||||||
padding-bottom: 70px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#legal h2{
|
|
||||||
font-size: 25px;
|
|
||||||
padding-top: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#legal h3{
|
|
||||||
font-size: 22px;
|
|
||||||
padding-top: 45px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#legal p {
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.big{
|
|
||||||
|
|
||||||
|
|
||||||
font-size: 3rem;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.jumbotron-corona {
|
|
||||||
background-image: url(../images/corona.jpg);
|
|
||||||
background-position: left center;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: cover;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.jumbotron {
|
|
||||||
background-image: url(../images/tri.png);
|
|
||||||
background-position: right center;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: cover;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#kontakt a , #kontakt p {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.navbar-nav {
|
|
||||||
padding-left: 40%;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.jumbotron .container{
|
|
||||||
font-size: 50px;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-text{
|
|
||||||
text-align: left;
|
|
||||||
text-align: justify !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.jumbotron-corona h1{
|
|
||||||
color: white;
|
|
||||||
padding: 30px;
|
|
||||||
font-size: 28px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.comment-text{
|
|
||||||
padding-top:0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-body i {
|
|
||||||
font-size: 12px;
|
|
||||||
padding-top: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-body h2{
|
|
||||||
|
|
||||||
font-size: 1.4rem;
|
|
||||||
margin-bottom: 0.9rem;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-body h5{
|
|
||||||
|
|
||||||
font-size: 1.3rem;
|
|
||||||
padding-bottom: 10px;
|
|
||||||
|
|
||||||
}
|
|
||||||
.img-notice{
|
|
||||||
padding-top: 10px;
|
|
||||||
padding-bottom: 25px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.modal-footer{
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue