Erstes Commit

This commit is contained in:
2026-05-27 20:04:58 +02:00
commit e16e9e36fd
218 changed files with 2307 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{{ $fromText := printf "texts/%s.html" .Params.from }}
{{ $toText := printf "texts/%s.html" .Params.to }}
{{ $catText := printf "texts/%s.html" .Params.category }}
<div id="seo-texts" class="mt-4 space-y-4 textcontent">
{{ if templates.Exists (printf "partials/%s" $fromText) }}
{{ partial $fromText . }}
{{ end }}
{{ if and (ne .Params.from .Params.to)
(templates.Exists (printf "partials/%s" $toText)) }}
{{ partial $toText . }}
{{ end }}
{{ if templates.Exists (printf "partials/%s" $catText) }}
{{ partial $catText . }}
{{ end }}
</div>