kernel_panic_web/kernelpanic.lol/templates/blog-post.html
2023-07-26 17:50:55 -06:00

12 lines
491 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: 100vw;">
{% endfor %}
<p style="padding-top: 5px; padding-left: 10%; padding-right: 10%;">{{ this.body }}</p>
{% endblock %}