25 lines
No EOL
871 B
HTML
25 lines
No EOL
871 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>
|
|
<h4>På gång:</h4>
|
|
<h4>{{ event.start_datetime | date: "%Y-%m-%d"}} {{ event.start_datetime | date: "%R"}}</h4>
|
|
<h2><a href="{{ event.url }}">{{ event.title }}</a></h2>
|
|
<p>{{ event.description }}</p>
|
|
Typ: {{ event.category }} <a href="{{ event.url }}">Läs mer</a>
|
|
<br /><br />
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<!-- END hero.html --> |