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

12 lines
508 B
HTML
Raw Permalink 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 %}
2023-08-10 19:42:28 +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: 100%;">
2023-06-28 06:53:01 +00:00
{% endfor %}
2023-08-10 19:42:28 +00:00
<p style="font-size: larger;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 %}