Skip to content
Snippets Groups Projects
Commit d49a9a85 authored by Phil Höfer's avatar Phil Höfer
Browse files

Merge branch '778-datenschutz' into 'development'

Resolve "Datenschutz"

Closes #778

See merge request !1315
parents df946518 8cbc9061
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
...@@ -5,24 +5,63 @@ ...@@ -5,24 +5,63 @@
@section('navbarFocus.datenschutz', 'class="active"') @section('navbarFocus.datenschutz', 'class="active"')
@section('content') @section('content')
<div class="card-heavy"> <style>
<h1>{!! trans('datenschutz.head') !!}</h1> main {
<p>{!! trans('datenschutz.general.1') !!}</p> font-size: 10pt;
<p>{!! trans('datenschutz.general.3') !!}</p> hyphens:auto;
</div> counter-reset: kontext 0 datum 0;
<div class="card-heavy"> text-align: justify;
<h1>{!! trans('datenschutz.policy.1') !!}</h1> }
<ul class="dotlist">
<li>{!! trans('datenschutz.policy.2') !!}</li> h1 {
<li>{!! trans('datenschutz.policy.5') !!}</li> font-size: 18pt;
<li>{!! trans('datenschutz.policy.6') !!}</li> }
<li>{!! trans('datenschutz.policy.7') !!}</li>
<li>{!! trans('datenschutz.policy.9') !!}</li> .kontext > h1::before {
<li>{!! trans('datenschutz.policy.10') !!}</li> counter-increment: kontext;
<li>{!! trans('datenschutz.policy.13') !!}</li> content: "K" counter(kontext) " ";
<li>{!! trans('datenschutz.policy.17') !!}</li> font-weight: normal;
<li>{!! trans('datenschutz.policy.18') !!}</li> }
<li>{!! trans('datenschutz.policy.19') !!}</li>
</ul> .datum > h1::before {
</div> counter-increment: datum;
@endsection content: "D" counter(datum) " ";
\ No newline at end of file font-weight: normal;
}
.kontext h1 {
font-size: 16pt;
margin-bottom: inherit;
}
.kontext h2 {
font-size: 14pt;
margin-bottom: inherit;
}
.datum h1 {
font-size: 12pt;
margin-bottom: inherit;
}
.datum h2 {
font-size: 11pt;
margin-bottom: inherit;
margin-top: 5pt;
}
.kontext-list {
list-style: none;
}
.datum-list {
list-style: none;
}
samp {
hyphens:none;
font-size: 8pt;
}
</style>
@if (LaravelLocalization::getCurrentLocale() == "de")
@include('datenschutz.german')
@else
@include('datenschutz.english')
@endif
@endsection
english
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment