assets
content
data
i18n
layouts
_default
abiturienten
about
anmeldeformular
anmeldung
author
begabte
cantorfora
cantorpreis
forms
ganztagsangebote
kontakt
pages
partials
blog-sidebar.html
chronik-modal.html
footer.html
head.html
header.html
info.html
opengraph.html
page-header.html
preloader.html
twitter.html
schulchronik
shortcodes
superhaufen
termine
wettbewerbe
404.html
index.html
robots.txt
static
.drone.dev.yml
.drone.yml
.gitignore
.gitmodules
LICENSE
config.yml
22 lines
701 B
HTML
22 lines
701 B
HTML
{{ $data := index .Site.Data .Site.Language.Lang }}
|
|
|
|
{{ with $data.homepage.info }}
|
|
<section class="section bg-cover" data-background="{{ .bg_image | absURL }}">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-6 col-sm-4 position-relative success-video">
|
|
<a class="play-btn venobox" href="{{ .video_link | safeURL }}" data-vbtype="video">
|
|
<i class="mdi mdi-play icon-md"></i>
|
|
</a>
|
|
</div>
|
|
<div class="col-lg-6 col-sm-8">
|
|
<div class="bg-white p-5">
|
|
<h2 class="section-title">{{ .title | markdownify }}</h2>
|
|
<p>{{ .content | markdownify }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|