momangen/_includes/hero.html
Set Hallstrom 36ea2436ea frontpage
2019-05-18 19:17:01 +02:00

26 lines
No EOL
869 B
HTML

<!-- BEGIN hero.html -->
<div id="banner">
<canvas style="display:none" id="canvas" width="285" height="285"></canvas>
<canvas style="display:none" id="canvas3" width="570" height="570"></canvas>
<canvas id="canvas2" width="570" height="570">*** THIS BROWSER DOES NOT SUPPORT THE CANVAS ELEMENT ***</canvas>
<div class="hero">
<h1>{{ site.title }}</h1>
<div id="poster" class="column">
{% for event in site.events limit: 1 %}
<div>
<a href="{{ event.url }}"><img src="{{ event.image }}" /></a>
</div>
<div>
<h2>{{ event.title }}</h2>
<h3>{{ event.start_datetime }} till {{ event.end_datetime }}</h3>
<p>{{ event.description }}</p>
<a href="{{ event.url }}">Läs mer</a>
<p>{{ event.category }}</p>
</div>
{% endfor %}
</div>
</div>
</div>
<!-- END hero.html -->