AMPERION_Webpage/layouts/partials/page-title.html

22 lines
834 B
HTML
Raw Normal View History

2025-07-31 13:54:18 +02:00
<section class="page-title gif-background" style="position: relative; padding: 64px 0 40px;">
<!-- Transparenter Overlay für bessere Lesbarkeit -->
<div style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.4); z-index: 1;"></div>
<div class="container" style="position: relative; z-index: 2;">
<div class="row">
<div class="col-md-12 text-center">
<h1 style="color: white; font-weight: 600; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); margin-bottom: 0;">
{{ .Title }}
</h1>
{{ with .Params.description }}
<h2 style="color: white; font-weight: 400; text-shadow: 1px 1px 3px rgba(0,0,0,0.4); margin-top: 0;">
{{ . | markdownify }}
</h2>
{{ end }}
</div>
2025-06-06 18:12:46 +02:00
</div>
2025-07-31 13:54:18 +02:00
</div>
2025-06-06 18:12:46 +02:00
</section>