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

16 lines
326 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>{{ post['datetime'] }}</h1>
{% for paragraph in post['caption'].split('\n') %}
<p>{{ paragraph }}</p>
{% endfor %}
<ul>
{% for picture in post['pictures'] %}
<li>
<img src="../{{ picture }}" width="400rem">
</li>
{% endfor %}
</ul>
{% endblock %}