2025-06-06 18:12:46 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
|
|
|
|
|
|
{{ partial "page-title.html" . }}
|
|
|
|
|
|
|
|
|
|
<section class="impressum section">
|
|
|
|
|
<div class="container">
|
2025-08-30 13:10:37 +02:00
|
|
|
<div class="row justify-content-center">
|
|
|
|
|
<div class="col-lg-12 col-md-12">
|
|
|
|
|
<div class="impressum-wrapper">
|
|
|
|
|
|
|
|
|
|
{{ range $index, $heading := .Params.headings }}
|
|
|
|
|
<div class="impressum-item row">
|
|
|
|
|
<div class="col-md-4">
|
|
|
|
|
<h4>{{ $heading }}</h4>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-8">
|
|
|
|
|
<div class="impressum-content">
|
2025-06-06 18:12:46 +02:00
|
|
|
{{ index $.Params.contents $index | markdownify }}
|
2025-08-30 13:10:37 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
</div>
|
2025-06-06 18:12:46 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
2025-08-30 13:10:37 +02:00
|
|
|
<style>
|
|
|
|
|
.impressum-wrapper {
|
|
|
|
|
background: white;
|
|
|
|
|
padding: 40px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.impressum-item {
|
|
|
|
|
margin-bottom: 25px;
|
|
|
|
|
padding-bottom: 25px;
|
|
|
|
|
border-bottom: 1px solid #f0f0f0;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.impressum-item:last-child {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.impressum-item h4 {
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.5px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.impressum-content {
|
|
|
|
|
color: #333;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.impressum-content a {
|
|
|
|
|
color: #006464;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.impressum-content a:hover {
|
|
|
|
|
color: #F5A623;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.impressum-wrapper {
|
|
|
|
|
padding: 25px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.impressum-item {
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
padding-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.impressum-item h4 {
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{{ end }}
|