summaryrefslogtreecommitdiff
path: root/templates/posts.html.j2
blob: eec04a9930abdbd6492c309fb2b8314c28bf7092 (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="/posts/{{ post.get_title()|e }}">{{ post.get_title() }}</a>
		</h2>
	</div>
	{% endfor %}
</section>
{% endblock %}