fnb-roc-website/templates/blog_template.html
2025-05-22 18:03:28 -04:00

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 %}