{{!< default}}
{{!-- The tag above means: insert everything in this file
into the {body} tag of the default.hbs template --}}
{{#post}}
{{!-- Everything inside the #post block pulls data from the post --}}
{{#if primary_tag}}
{{primary_tag.name}}
{{/if}}
{{#if feature_image}}
{{/if}}
{{content}}
{{!--
If you want to embed comments, this is a good place to paste your code!
--}}
{{ comments }}
{{!-- A signup call to action is displayed here, unless viewed as a logged-in member --}}
{{#unless @member}}
Subscribe
{{!-- ^ This looks like a form element, but it's just a link to Portal,
making the form validation and submission much simpler. --}}
{{/unless}}
{{/post}}
{{!-- I don't know why we had to have this block outside the
"post" block, but that's the way the cookie crumbled. --}}
{{#is "post"}}
{{!-- Read more links, just above the footer --}}
{{/is}}