{{!--
This template is used for the post page.
--}}
{{!-- This block preloads specific assets for the post page --}}
{{#contentFor "preload"}}
{{/contentFor}}
{{!-- This block loads specific styles for the post page --}}
{{#contentFor "styles"}}
{{/contentFor}}
{{!-- The tag below means: insert everything in this file
into the {body} of the default.hbs template --}}
{{!< default}}
{{!-- Special header.hbs partial to generate the tag --}}
{{#post}}
{{> header background=feature_image}}
{{/post}}
{{#post}}
{{!-- Inject styles of the hero image to make it responsive --}}
{{> hero background=feature_image}}
{{#if feature_image}}
{{#if feature_image_caption}}
{{feature_image_caption}}
{{/if}}
{{/if}}
{{/post}}
{{!-- Everything inside the #post tags pulls data from the post --}}
{{#post}}
{{title}}
{{#if primary_tag}}
{{primary_tag.name}}
{{/if}}
{{content}}
{{!-- Email subscribe form at the bottom of the page --}}
{{#if @site.members_enabled}}
{{t "Subscribe to our newsletter"}}
{{t "Get the latest posts delivered right to your inbox."}}
{{!-- The #contentFor helper here will send everything inside it up to the matching #block helper found in default.hbs --}}
{{#contentFor "scripts"}}
{{/contentFor}}