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
17 lines
674 B
HTML
17 lines
674 B
HTML
{{ define "main" }}
|
|
<main class="container">
|
|
<h1 class="page-title">{{ .Title }}</h1>
|
|
{{ with .Content }}
|
|
<div>{{ . }}</div>
|
|
{{ end }}
|
|
|
|
<iframe
|
|
width="100%"
|
|
height="500px"
|
|
frameborder="0"
|
|
allowfullscreen
|
|
src="//umap.openstreetmap.fr/en/map/vmems-problemes-cyclables-gaillon-aubevoye_1100616?scaleControl=false&miniMap=false&scrollWheelZoom=false&zoomControl=true&editMode=disabled&moreControl=true&searchControl=null&tilelayersControl=null&embedControl=null&datalayersControl=true&onLoadPanel=none&captionBar=false&captionMenus=true">
|
|
</iframe>
|
|
</main>
|
|
{{ end }}
|
|
|