AMPERION_Webpage/layouts/_default/agb.html

22 lines
578 B
HTML
Raw Permalink Normal View History

2025-06-06 18:12:46 +02:00
{{ define "main" }}
{{ partial "page-title.html" . }}
<section class="page-wrapper">
<div class="container">
<div class="row">
2025-09-02 10:23:35 +02:00
<div class="col-md-4 sticky-top text-left">
2025-06-06 18:12:46 +02:00
{{ with .Params.subtitle }}{{ . | $.Page.RenderString (dict "display" "block") }}{{ end }}
<p>{{ i18n "last_update" }}: {{ time.Format ":date_long" .Lastmod }}</p>
<h3>{{ i18n "faq_toc_title" }}</h3>
{{ .TableOfContents }}
</div>
2025-09-02 10:23:35 +02:00
<div class="col-md-8 text-block">
2025-06-06 18:12:46 +02:00
{{ .Content }}
</div>
</div>
</div>
</section>
{{ end }}