32 lines
886 B
HTML
32 lines
886 B
HTML
|
{{ define "main" }}
|
||
|
<div class="page-container">
|
||
|
<h1>Vélo et mobilités en Eure-Madrie-Seine</h1>
|
||
|
|
||
|
{{/*
|
||
|
{{ $image := resources.Get "images/velo_homme.jpg" }}
|
||
|
{{ $image = $image.Resize "400x" }}
|
||
|
<img
|
||
|
alt="Homme et un vélo"
|
||
|
src="{{ $image.RelPermalink }}"
|
||
|
/>
|
||
|
{{ $image := resources.Get "images/velo_femme.jpg" }}
|
||
|
{{ $image = $image.Resize "400x" }}
|
||
|
<img
|
||
|
alt="Une femme à vélo"
|
||
|
src="{{ $image.RelPermalink }}"
|
||
|
/>
|
||
|
*/}}
|
||
|
|
||
|
<div class="tmp_logo_container">
|
||
|
{{ $image := resources.Get "images/logos/logo.png" }}
|
||
|
<img
|
||
|
alt="Logo VMEMS représentant un vélo en transition"
|
||
|
src="{{ $image.RelPermalink }}"
|
||
|
/>
|
||
|
</div>
|
||
|
|
||
|
{{ .Content }}
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
|