]> gitweb.fperrin.net Git - djsite.git/blobdiff - quotes/templates/quotes/tag.html
Add HTML validation
[djsite.git] / quotes / templates / quotes / tag.html
index 266cd168e45c35f75b69a1fca0523c93121b7d7d..a308d451f8f348d0338917c74879b103e3c1c725 100644 (file)
@@ -1,15 +1,13 @@
 {% extends 'quotes/base.html' %}
 
-{% block body %}
-
+{% block title %}Quotes about "{{ tag.tag }}"{% endblock %}
 
-<h1>{{ tag.tag }}</h1>
+{% block body %}
 
-<p>All the quotes tagged with {{ tag.tag }}:<p>
+<p>All the quotes tagged with "{{ tag.tag }}":</p>
 
 {% for quote in tag.quote_set.all %}
   {% include "quotes/display.html" with quote=quote %}
 {% endfor %}
 
-
 {% endblock %}