Files
mms43-v2/themes/mms43/layouts/home.html
Arnaud Delcasse 36dd81e661
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 40s
Add search and PARCOURSMOB integration
2026-01-07 11:46:19 +01:00

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 }}