27 lines
1.2 KiB
HTML
27 lines
1.2 KiB
HTML
{{ define "main" }}
|
|
{{ $heroBg := resources.Get "images/visuels/incontournable-haut-pays-velay.jpg" }}
|
|
<section class="hero" {{ if $heroBg }}style="background-image: url('{{ $heroBg.RelPermalink }}')"{{ end }}>
|
|
<h1 class="hero-headline">
|
|
<span class="text-primary">{{ site.Params.hero.line1before }}</span> <span class="text-highlight">{{ site.Params.hero.line1highlight }}</span> <span class="text-primary">{{ site.Params.hero.line1after }}</span><br>
|
|
<span class="text-highlight">{{ site.Params.hero.line2highlight }}</span> <span class="text-primary">{{ site.Params.hero.line2after }}</span>
|
|
</h1>
|
|
</section>
|
|
|
|
{{ partial "search-block.html" (dict "showTitle" true "action" "/recherche/") }}
|
|
|
|
<section class="video-block">
|
|
<h2 class="video-title">{{ site.Params.video.title }}</h2>
|
|
{{ $video := resources.Get "videos/video_presentation_mms43.mp4" }}
|
|
{{ if $video }}
|
|
<div class="video-container">
|
|
<video controls>
|
|
<source src="{{ $video.RelPermalink }}" type="video/mp4" />
|
|
Votre navigateur ne supporte pas la lecture de vidéos.
|
|
</video>
|
|
</div>
|
|
{{ end }}
|
|
</section>
|
|
|
|
{{ .Content }}
|
|
{{ end }}
|