kernel_panic_web/kernelpanic.lol/templates/blog-post.html
2023-08-10 13:42:28 -06:00

12 lines
508 B
HTML

{% extends "layout.html" %}
{% from "macros/blog.html" import render_blog_post %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
{% for image in this.attachments.images %}
<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: 100%;">
{% endfor %}
<p style="font-size: larger;padding-top: 5px; padding-left: 10%; padding-right: 10%;">{{ this.body }}</p>
{% endblock %}