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 %}
|