kernel_panic_web/kernelpanic.lol/templates/blog-post.html

12 lines
398 B
HTML
Raw Normal View History

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 %}
<img src="{{ image|url }}" alt="{{this.title}}" style="float: left; margin-right: 20px; margin-bottom: 10px; margin-top: 10px;">
{% endfor %}
<p style="padding-top: 5px;">{{ this.body }}</p>
2023-06-21 17:30:48 +00:00
{% endblock %}