I am building my home page as a modular page. Ordering pages in the admin section won’t satisfy my graphic design. I need to tell the template exactly which modular page to print at which position in the homepage template. For example:
{% block content %}
<section id="hero" class="row">
<div class="column">
{{ print the "hero" modular page here }}
</div>
</section>
<section id="featured" class="row">
<div class="column">
{{ print the "featured" modular page here }}
</div>
</section>
{% endblock %}
How can I pick the specific modular page that I need out of page.collection() and print it where I need it?