smash2/templates/quote.html
2020-11-15 22:11:33 +00:00

14 lines
363 B
HTML

{% extends "layout.html" %}
{% block customhead %}
<title>{{ title }}</title>
{% endblock %}
{% block content %}
<div class="container">
<pre>
{{ quote.quote }}
</pre>
<p class="text-muted small">Tags: {% for tag in quote.tags %}<a href="/tag/{{tag}}">{{tag}}</a>{% if not loop.last %}, {% endif %}{% endfor %}</p>
</div>
{% endblock %}