Make dialog buttons a <div> instead of <p>, render Markdown in blog and post descriptions

This commit is contained in:
daudix
2024-06-15 02:58:51 +03:00
parent 18485c90c6
commit 7cfc1a9cd6
5 changed files with 11 additions and 11 deletions

View File

@ -1,12 +1,12 @@
<!DOCTYPE html>
<html lang="en">
{% include "partials/head.html" ignore missing -%}
{% include "partials/head.html" -%}
<body>
{% include "partials/nav.html" ignore missing -%}
{% include "partials/nav.html" -%}
<div id="main" class="container">
{% block custom %}{%- endblock -%}
{% block content %}{%- endblock -%}
</div>
{% include "partials/footer.html" ignore missing -%}
{% include "partials/footer.html" -%}
</body>
</html>