{% extends "base_pico.html" %} {% block title %}Sandwitches{% endblock %} {% block content %}

Sandwitches: sandwiches so good, they haunt you!

{% for recipe in recipes %}
{% if recipe.image %}
{{ recipe.title }}
{% endif %}
{{ recipe.title }}
{% for tag in recipe.tags.all %} {{ tag.name }} {% endfor %}
{% if user.is_authenticated and user.is_staff %} {% endif %}
{% empty %}

No sandwitches yet, please stay tuned.

{% endfor %}
{% endblock %} {% block page_scripts %} {% endblock %}