22 lines
414 B
HTML
22 lines
414 B
HTML
{{ define "main" }}
|
|
<div class=the-super-head-of-the-page>
|
|
<div class=image>
|
|
</div>
|
|
<div class=text>
|
|
<h1>Du vélo sur gaillon c'est possible!</h1>
|
|
<p>VMEMS, association de promotion du vélo et autres mobilités douces!</p>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
.the-super-head-of-the-page{
|
|
display:flex;
|
|
flex-direction:row;
|
|
width:100%;
|
|
}
|
|
.the-super-head-of-the-page .image{
|
|
background:grey;
|
|
width:50%;
|
|
}
|
|
|
|
</style>
|
|
{{ end }}
|