Matthieu Bessat
293ac83a9d
All checks were successful
Deploy workflow / deploy (push) Successful in 17s
- per subject of projects page - add basic news page - new layout with bootstrap - more misc pages
18 lines
439 B
HTML
18 lines
439 B
HTML
{{ define "main" }}
|
|
<div class="container">
|
|
<h1 class="page-title">{{ .Title }}</h1>
|
|
|
|
<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>
|
|
|
|
<div>
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
|