blob: 8352d7e57519368e9a66226fe00db25940b18b43 (
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
|
{% extends "base.html.j2" %}
{% block main %}
<section class="banner flexible">
<h1>Blog</h1>
<h6>
Sharing reflections and recommendations from practice
</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 %}
|