e8e996d63d
Former-commit-id: 158d9cf310e649e2ebe26c3fdb9a7addc6074c49 [formerly 5688511a63ade0f9eb7b09a206d1e8f797484f99] [formerly 9bb6d4eb42afc91a25170382ef15d49ecc1e7672 [formerly 1b4358c5f3f3f15a6eea7e736dc5efcafb1496b7]] Former-commit-id: 241a7edd39a18a072a99fe029982cbe35b925642 [formerly f99e987c3a40493b8a0d2c2cdf0bb92274e5afe1] Former-commit-id: 03402cd2e6bf32a8d934eed8b6af80eef93eadeb
20 lines
905 B
HTML
20 lines
905 B
HTML
{% 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 %}
|
|
<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>
|
|
<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>
|
|
</div>
|
|
</section>
|
|
{% for child in this.pagination.items %}
|
|
{{ render_blog_post(child, from_index=true) }}
|
|
{% endfor %}
|
|
|
|
{{ render_pagination(this.pagination) }}
|
|
{% endblock %}
|