summaryrefslogtreecommitdiff
path: root/templates/posts.html.j2
blob: 311d9c5c360cc7374ebef1da4005e61e505b3ca5 (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>Posts</h1>
</section>

<section>
	<h2>
		Refining how we think and teach.
	</h2>
</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 %}