{{!< 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!
--}}
{{!-- A signup call to action is displayed here, unless viewed as a logged-in member --}}
{{#unless @member}}{{#if access}}
{{#if @custom.email_signup_text}}
{{@custom.email_signup_text}}
{{/if}}
Subscribe
{{!-- ^ This looks like a form element, but it's just a link to Portal,
making the form validation and submission much simpler. --}}
{{/if}}{{/unless}}
{{!-- Read more links, just above the footer --}}
{{#if @custom.show_recent_posts}}
{{!-- The {#get} helper below fetches some of the latest posts here
so that people have something else to read when they finish this one.
This query gets the latest 3 posts on the site, but adds a filter to
exclude the post we're currently on from being included. --}}
{{#get "posts" filter="id:-{{id}}" include="authors" limit="3" as |more_posts|}}
{{#if more_posts}}
{{/if}}
{{/get}}
{{/if}}
{{/post}}