diff --git a/templates/recipe.html b/templates/recipe.html
index fc31df2..fb130d7 100644
--- a/templates/recipe.html
+++ b/templates/recipe.html
@@ -17,14 +17,18 @@
{{getrecipe(subrecipe)}}
{% endfor %}
{{rec.title}}
+{% if rec.ingredients|length != 0 %}
Ingredients
{% for ing in rec.ingredients %}
{{ingredient(ing)}}
{% endfor %}
+{% endif %}
+{% if rec.steps|length != 0 %}
Steps
{% for step in rec.steps %}
{{ step }}
{% endfor %}
+{% endif %}
{%- endmacro %}