Started working on the skeleton of an actual website. Created barebones templates...
[~kgodey/maayanwich.git] / templates / onesandwich.html
1 {% extends "base.html" %}
2
3 {% block title %} The {{ s.adjective }} Ma'ayanwich {% endblock %}
4
5 {% block content %}
6         <h3 class="sandwichtitle">{{ s.adjective }}</h3>
7         <p class="metadata">Made on {{ s.date_made }} and added by {{ s.user.username }}.</p>
8         <img class="sandwichimg" src="{{ s.picture.url }}">
9         <h4 class="sandwichsub">Ingredients</h4>
10         <ul class="ingredients">
11                 {% for i in s.ingredients.all %}
12                         <li>{{ i.name }}
13                 {% endfor %}
14         </ul>
15         <h4 class="sandwichsub">Notes</h5>
16         <p class="sandnotes"> {{ s.notes }}</p>
17 {% endblock %}