2018-02-25 00:06:19 +01:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
|
|
{% block body %}
|
2018-04-24 20:39:56 +02:00
|
|
|
|
|
|
|
<!-- One -->
|
|
|
|
<section id="one" class="wrapper spotlight style1">
|
|
|
|
<div class="inner">
|
|
|
|
<a href="{{ this.as01l1 }}" class="image"><img src=" {{ this.as01img }}" alt="" /></a>
|
|
|
|
<div class="content">
|
|
|
|
<h2 class="major">{{ this.as01h1 }}</h2>
|
|
|
|
{{ this.as01b1 }}
|
|
|
|
<a href="{{ this.as01l1 }}" class="special">{{ this.as01d1 }}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Two -->
|
|
|
|
<section id="two" class="wrapper alt spotlight style2">
|
|
|
|
<div class="inner">
|
|
|
|
<a href="{{ this.as02l1 }}" class="image"><img src=" {{ this.as02img }}" alt="" /></a>
|
|
|
|
<div class="content">
|
|
|
|
<h2 class="major">{{ this.as02h1 }}</h2>
|
|
|
|
{{ this.as02b1 }}
|
|
|
|
<a href="{{ this.as02l1 }}" class="special">{{ this.as02d1 }}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Three -->
|
|
|
|
<section id="three" class="wrapper spotlight style3">
|
|
|
|
<div class="inner">
|
|
|
|
<a href="{{ this.as03l1 }}" class="image"><img src=" {{ this.as03img }}" alt="" /></a>
|
|
|
|
<div class="content">
|
|
|
|
<h2 class="major">{{ this.as03h1 }}</h2>
|
|
|
|
{{ this.as03b1 }}
|
|
|
|
<a href="{{ this.as03l1 }}" class="special">{{ this.as03d1 }}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- Four -->
|
|
|
|
<section id="four" class="wrapper alt style1">
|
|
|
|
<div class="inner">
|
|
|
|
<h2 class="major">{{ this.where }}</h2>
|
|
|
|
<ul class="actions">
|
2018-10-13 00:02:29 +02:00
|
|
|
{{ this.description }}
|
|
|
|
{{ this.tour }}
|
2018-04-24 20:39:56 +02:00
|
|
|
<li><a href="{{ 'feed.xml'|url }}" class="button">RSS Feed</a></li>
|
2018-07-31 23:57:09 +02:00
|
|
|
<li><a href="{{ 'waffeln.ics'|url }}" class="button">ICS Kalender</a></li>
|
2018-04-24 20:39:56 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-02-25 00:06:19 +01:00
|
|
|
{% endblock %}
|