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

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