aboutsummaryrefslogtreecommitdiff
path: root/templates/similar.jinja2
blob: 4bdd7486da569f6413f68faab70fcfd94b940781 (plain)
1
2
3
4
5
6
7
8
9
{% extends "base.html" %}
{% block content %}
<h1>Beers Like {{ orig }} but {{ dir }} {{ attr }}</h1>
<ul>
{% for beer in beers %}
  <li>{{ beer }}</li>
{% endfor %}
</ul>
{% endblock %}