{% extends "base.html" %}
{% load get_placeholder_tag %}
{% block content %}
{% get_placeholder "top" as top %}
{% get_placeholder "main" as main %}
{% get_placeholder "side" as side %}
{% get_placeholder "bottom" as bottom %}
{% if top %}
{{ top }}
{% endif %}
{% include "recipes/_index.html" %}
{{ main }}
{{ side }}