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

@ -10,10 +10,10 @@
<p>The requested page could not be found.{% if config.extra.issues_url %} If you feel this is not normal, then you can create an issue on the issue tracker.{% endif %}</p>
<p class="dialog-buttons">
<div class="dialog-buttons">
<a onclick="window.history.go(-1)" class="inline-button">Go Back</a>
{% if config.extra.issues_url %}
<a class="inline-button colored" href="{{ config.extra.issues_url }}">File an Issue</a>
{% endif %}
</p>
</div>
{% endblock content %}