2018-02-25 00:06:19 +01:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% from "macros/blog.html" import render_blog_post %}
|
|
|
|
{% from "macros/pagination.html" import render_pagination %}
|
|
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
|
|
{% block body %}
|
2018-04-24 23:20:20 +02:00
|
|
|
<section id="one" class="wrapper alt spotlight style2">
|
|
|
|
<div class="inner">
|
|
|
|
<a class="image"><img src="{{ '/images/c3woc/c3woc.svg'|url }}" alt="" /></a>
|
|
|
|
<div class="content">
|
|
|
|
<h2 class="major">{{ this.title }}</h2>
|
2018-07-15 01:50:45 +02:00
|
|
|
<a>Leckere Neuigkeiten. Jetzt auch als </a><a href="{{ '/feed.xml'|url }}">RSS <span class="icon fa-rss"></span></a> <br/>
|
|
|
|
<a>Taktische Waffeleinsätze. Jetzt auch als </a><a href="{{ '/waffeln.ics'|url }}">ICS <span class="icon fa-calendar"></span></a>
|
2018-04-24 23:20:20 +02:00
|
|
|
</div>
|
|
|
|
</section>
|
2018-02-25 00:06:19 +01:00
|
|
|
{% for child in this.pagination.items %}
|
|
|
|
{{ render_blog_post(child, from_index=true) }}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{{ render_pagination(this.pagination) }}
|
|
|
|
{% endblock %}
|