I understand that everything inside the pages folder is being rendered in the content block.
But I also have different types of content that I would like to render in another block.
For instance: I am using the foundation framework and generally all content is rendered within a div with a row class which defines the pages boundaries. But on my homepage I want to place an image slider which uses the full browser's width.
{% block before_content %},{% endblock %}
<div class="row">
<div class="large-12 columns">
{% block content %},{% endblock %}
</div>
</div>
How can I tell my slider's content it should render in 'before_content' instead of 'content'?