12 lines
277 B
HTML
Executable file
12 lines
277 B
HTML
Executable file
{{ 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 }}
|
|
{{ end }}
|