2023-06-21 17:30:48 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
{% from "macros/blog.html" import render_blog_post %}
|
|
|
|
|
{% block title %}{{ this.title }}{% endblock %}
|
2023-06-28 06:53:01 +00:00
|
|
|
|
2023-06-21 17:30:48 +00:00
|
|
|
{% block body %}
|
2023-06-28 06:53:01 +00:00
|
|
|
{% for image in this.attachments.images %}
|
2023-07-26 23:50:55 +00:00
|
|
|
<img src="{{ image|url }}" alt="{{this.title}}" style="border-width: 2px; border-color: black; float: left; margin-right: 20px; margin-bottom: 10px; margin-top: 10px; width: 100vw;">
|
2023-06-28 06:53:01 +00:00
|
|
|
{% endfor %}
|
2023-07-26 23:50:55 +00:00
|
|
|
<p style="padding-top: 5px; padding-left: 10%; padding-right: 10%;">{{ this.body }}</p>
|
2023-06-28 06:53:01 +00:00
|
|
|
|
2023-06-21 17:30:48 +00:00
|
|
|
{% endblock %}
|