While setting up my static homepage and routing, I did something causing my pages (but not posts) to appear blank. Posts work fine. My homepage, built on a version of the page template, works fine.
Pages themselves are blank.
Example page: The Founder's Guide to Hiring
pages.hbs
{{!< default}}
{{> header}}
<main class="wrapper_digitus" role="main">
{{#page}}
<article class="article_digitus" role="article" itemscope itemtype="http://schema.org/Article">
<header class="postheader_digitus">
<h1 class="posttitle_digitus" itemprop="headline">{{title}}</h1>
<hr class="pause">
</header>
<div class="postcontent_digitus" itemprop="articleBody">
{{content}}
</div>
</article>
{{/page}}
</main>
{{> footer}}
routes.yaml
routes:
/:
data: page.home
template: home
collections:
/articles/:
permalink: /{slug}/
template: index
taxonomies:
tag: /tag/{slug}/
author: /author/{slug}/
I already recreated the page.hbs file from what was working on the static homepage and post.hbs.
Can anyone provide any guidance on where I might look to troubleshoot next?
Thanks,
Fred