forked from noraatfedora/fnb-roc-website
14 lines
444 B
HTML
14 lines
444 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Blog not bombs ;)</h1>
|
|
<div class="flex-container">
|
|
{% for post in posts %}
|
|
<div class="post-container fancy-border">
|
|
<a href="posts/{{ post['timestamp'] }}.html">
|
|
<img src="{{ post['pictures'][0] }}" width="200rem" alt="post image from {{ post['datetime'] }}">
|
|
<p>{{ post['datetime'] }}</p>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %} |