{{!< default}}
{{!-- The tag above means: insert everything in this file
into the {body} of the default.hbs template --}}
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
{{> "site-nav"}}
{{!-- Everything inside the #post tags pulls data from the post --}}
{{#post}}
{{title}}
{{#if feature_image}}
{{/if}}
{{content}}
{{/post}}
{{!-- The #contentFor helper here will send everything inside it up to the matching #block helper found in default.hbs --}}
{{#contentFor "scripts"}}
{{/contentFor}}