aboutsummaryrefslogtreecommitdiff
path: root/templates/similar.jinja2
diff options
context:
space:
mode:
Diffstat (limited to 'templates/similar.jinja2')
-rw-r--r--templates/similar.jinja29
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/similar.jinja2 b/templates/similar.jinja2
new file mode 100644
index 0000000..b7a57f7
--- /dev/null
+++ b/templates/similar.jinja2
@@ -0,0 +1,9 @@
+{% extends "base.html" %}
+{% block content %}
+<h1>Similar Beers</h1>
+<ul>
+{% for beer in beers %}
+ <li>{{ beer }}</li>
+{% endfor %}
+</ul>
+{% endblock %}