website/themes/hugoplate/layouts/_default/single.html

12 lines
277 B
HTML
Raw Normal View History

2024-02-14 16:01:14 +00:00
{{ define "main" }}
{{/* Lade JS nur wenn wir es brauchen */}}
<div class="content">
{{ .Content }}
</div>
{{ if eq .Section "bestellung" }}
{{ $js := resources.Get "js/bestellformular.js" | minify }}
<script src="{{ $js.RelPermalink }}"></script>
{{ end }}
2024-02-14 16:01:14 +00:00
{{ end }}