AMPERION_Webpage/layouts/partials/page-title.html

15 lines
405 B
HTML
Raw Normal View History

2025-06-06 18:12:46 +02:00
<section class="page-title" style="background-image: url('{{ .Params.bg_image | relURL }}');">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
2025-07-24 00:06:23 +02:00
<h2 class="custom-title">{{ .Title }}</h2>
{{ with .Params.description }}
<h3>{{ . }}</h3>
{{ end }}
2025-06-06 18:12:46 +02:00
</div>
</div>
</div>
</div>
</section>