smash2/templates/quote.html

12 lines
338 B
HTML

{% extends "layout.html" %}
{% block 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="/tags/{{tag}}">{{tag}}</a>{% if not loop.last %}, {% endif %}{% endfor %}</p>
</div>
{% endblock %}