blob: e26465e265b9cbb45e86f25369cbf1906f5ad812 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends "base.html.j2" %}
{% block main %}
<section class="banner">
<h1>Blog</h1>
</section>
<section class="centered">
<h6>
Refining how we think and teach.
</h6>
</section>
<section class="cards">
{% for post in posts %}
<div class="card">
<h2>
<a href="/blog/{{ post.get_title()|e }}">{{ post.get_title() }}</a>
</h2>
</div>
{% endfor %}
</section>
{% endblock %}
|