Files
assets
content
data
i18n
layouts
_default
abiturienten
about
anmeldeformular
anmeldung
author
begabtenfoerderung
cantorfora
cantorpreis
forms
ganztagsangebote
kontakt
pages
partials
blog-sidebar.html
footer.html
head.html
header.html
info.html
page-header.html
preloader.html
schulchronik
shortcodes
termine
wettbewerbe
404.html
index.html
static
.drone.yml
.gitignore
.gitlab-ci.yml
LICENSE
config.yml
gcg-website/layouts/partials/preloader.html

24 lines
487 B
HTML
Raw Normal View History

2022-03-18 13:35:57 +01:00
{{ if .Site.Params.preloader.enable }}
<div class="preloader">
2022-12-25 20:29:58 +01:00
<div>
<div>
{{ with .Site.Params.preloader.preloader }}
<img src="{{ . | absURL }}" width="222px" alt="preloader">
{{ end }}
</div>
<div>
{{ with .Site.Params.preloader.loader }}
<img src="{{ . | absURL }}" width="222px" alt="preloader">
{{ end }}
</div>
</div>
2022-03-18 13:35:57 +01:00
</div>
2022-10-24 16:15:18 +02:00
<noscript>
<style>
.preloader {
display: none;
}
</style>
</noscript>
2022-03-20 09:54:02 +01:00
{{ end }}