004f978334
Former-commit-id: 48d2d4389a91b090fd3064dba5d25815dc5e2b54 [formerly e240236e62e66ed21ef326784e558f81d7997814] [formerly 080690acb8af7f8b16d93f9d3efe00187914ee26 [formerly d0df14d42ad2b43381928ced15657ea660396733]] Former-commit-id: 1aa57bf7f8630e4676556b94b0e672018012dbb2 [formerly 1a2040319e8c4be54532a25ab381461ed777d767] Former-commit-id: dccb5db2d4c6ede40bf1657577631de4b538290d
19 lines
662 B
HTML
19 lines
662 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>
|
|
{{ this.sub_title }}
|
|
</div>
|
|
</section>
|
|
{% for child in this.pagination.items %}
|
|
{{ render_blog_post(child, from_index=true) }}
|
|
{% endfor %}
|
|
|
|
{{ render_pagination(this.pagination) }}
|
|
{% endblock %}
|