AMPERION_Webpage/layouts/partials/page-title.html

18 lines
578 B
HTML
Raw Normal View History

2025-07-30 00:35:15 +02:00
<section class="page-title"
style="background-image: url('{{ .Params.bg_image | relURL }}'); padding: 28px 0 12px;">
2025-06-06 18:12:46 +02:00
<div class="container">
<div class="row">
2025-07-30 00:35:15 +02:00
<div class="col-md-12 text-center">
<div class="services-title">
<h2 style="margin:0 0 6px 0; font-weight:600;">{{ .Title }}</h2>
2025-06-06 18:12:46 +02:00
</div>
2025-07-30 00:35:15 +02:00
{{ with .Params.description }}
<div class="services-description">
<h3 style="margin:0; font-weight:400;">{{ . | markdownify }}</h3>
</div>
{{ end }}
2025-06-06 18:12:46 +02:00
</div>
</div>
</div>
</section>