blob: 60a10c2db1404e52d95f45a65358d44b35211319 (
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
24
25
26
27
28
|
{% 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">
<h6>
{{ post.get_title()|e }}
</h6>
<p>
{{ post.get_description()|safe }}
</p>
<a target="_blank" href="/blog/{{ post.get_title()|e }}">Read more</a>
</div>
{% endfor %}
</section>
{% endblock %}
|