I'm building a one-page site. I have some sections. I have stored all my sections'content as pages so the client can easily find the appropriate section. I'm using my home.html template to call all the {{ pages }} using partial. I need a different html structure for each section. But I do not know how to get their content.
{{pages:about_us}}
<h1>{{title}}</h1>
{{/pages:about_us}}
Thanks.