modified quotes display

This commit is contained in:
tracer 2022-11-03 19:19:10 +01:00
parent ee2a14a532
commit 5505856982
1 changed files with 6 additions and 6 deletions

View File

@ -82,14 +82,14 @@
</div>
{% endfor %}
<div class="col m-3" id="main_content">
{% block body %}
<h1 class="q-title-show">Quote of the Moment</h1>
<div class="q-display p-3">
{# <i class="fa fa-quote-left"></i> #}
<p class="d-inline">
{{ quote | raw }}
</p>
<h1 class="title-show">Quote of the Moment</h1>
<div class="quote-box p-3">
<i class="fa fa-quote-left"></i><br>
{{ quote | raw | nl2br }}
</div>
{% endblock %}
</div>