forked from blek/world
1
0
Fork 0
otherworld/templates/custom/blog-post.html

19 lines
404 B
HTML
Raw Permalink Normal View History

2024-01-08 10:22:35 +01:00
{% extends "base.html" %}
{% block content %}
2024-02-24 09:23:29 +01:00
<h2 style='margin-bottom:0'>{{ page.title }}</h2>
{% if page.description %}
<h4 style='margin-top:0;font-size:80%'>{{ page.description }}</h4>
{% endif %}
2024-01-08 10:22:35 +01:00
<noscript>
Your browser doesn't support JS. This is so cool!
</noscript>
<div class='md-content'>
<a href='/blog'>go to posts</a>
{{ page.content | safe }}
</div>
2024-02-24 09:23:29 +01:00
{% endblock content %}