Added an index instead of "all sandwiches", made custom titles for every page.
[~kgodey/maayanwich.git] / templates / indexsandwiches.html
1 {% extends "base.html" %}
2
3 {% block title %}Sandwich Index{% endblock %}
4
5 {% block content %}
6         <h1 class="pagetitle">Index of All Sandwiches</h1>
7                 {% for s in allsandwiches %}
8                         <p class="sandnotes"><a href="{{ s.get_absolute_url }}">{{ s.adjective }}</a></p>
9                 {% endfor %}
10 {% endblock %}