391b9e3e76
Former-commit-id: 18652fbea6ffa1879194c376f70307c1b09528f4 [formerly 28608f5f7650ae86cc13a2ea60b9ec2023833a45] Former-commit-id: 113e10e57eb00b1ba268a560e0506042527ccd8d
19 lines
767 B
HTML
19 lines
767 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>Waffeltastische Neuigkeiten. Jetzt auch als </a><a href="{{ '/feed.xml'|url }}">RSS <span class="icon fa-rss"></span></a>
|
|
</div>
|
|
</section>
|
|
{% for child in this.pagination.items %}
|
|
{{ render_blog_post(child, from_index=true) }}
|
|
{% endfor %}
|
|
|
|
{{ render_pagination(this.pagination) }}
|
|
{% endblock %}
|