Hi @ureaul! I think you just need to rename your template file to landing.hbs so it matches the template value you’ve set. Here’s a tutorial on setting up custom home pages that has a bit more info on it:
That’s a good sign. In your routes file did you set data to page.home? If so then you may not be outputting the content correctly in the template file
Aha I got it, turns out the post get code should be page . I thought it was fine as the page.hbs file uses post as well. Here’s the code that should be in home.hbs :
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
<section class="main-content-area">
<div class="container">
<div class="row">
<p>Testing</p>
{{#page}}
<div class="col post-single">
<div class="col-md-8 m-auto post-head">
<div class="post-head">
<h1 class="post-title">{{title}}</h1>
</div>
</div>
{{#if feature_image}}
<div class="featured-image" style="background-image:url({{feature_image}});"></div>
{{/if}}
<div class="post-content-wrap col-md-8 m-auto">
This is a text in the home.hbs file, the content should appear below
{{content}}
</div>
</div>
{{/page}}
</div>
</div>
</section>