29 lines
845 B
HTML
29 lines
845 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 %}
|
|
<!-- Main Blog -->
|
|
<div id="main" class="wrapper style1">
|
|
<div class="container">
|
|
<header class="major">
|
|
<h2>{{ this.title }}</h2>
|
|
{{ this.description }}
|
|
</header>
|
|
<center>
|
|
<a href="{{ this.link|url }}" class="button primary fit" >{{ this.spruch }}
|
|
<i class="fas fa-rss iconshift-right-8" ></i>
|
|
</a>
|
|
|
|
</center>
|
|
<section id="content">
|
|
{% for child in this.pagination.items %}
|
|
{{ render_blog_post(child, from_index=true) }}
|
|
{% endfor %}
|
|
<center>
|
|
{{ render_pagination(this.pagination) }}
|
|
<center>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|