18 lines
594 B
HTML
Executable file
18 lines
594 B
HTML
Executable file
{{ define "main" }}
|
|
{{/* Lade JS nur wenn wir es brauchen */}}
|
|
<div class="content">
|
|
{{ .Content }}
|
|
</div>
|
|
|
|
{{ if eq .Section "bestellung" }}
|
|
|
|
{{ $formularjs := resources.Get "js/bestellformular.js" | minify }}
|
|
{{ $captchaSystemJS := resources.Get "vendor/captcha-system/js/main.js" | minify }}
|
|
{{ $captchaSystemCSS := resources.Get "vendor/captcha-system/css/main.css" | minify }}
|
|
|
|
<script src="{{ $formularjs.RelPermalink }}"></script>
|
|
<script src="{{ $captchaSystemJS.RelPermalink }}"></script>
|
|
<link rel="stylesheet" href="{{ $captchaSystemCSS.RelPermalink }}">
|
|
|
|
{{ end }}
|
|
{{ end }}
|