{{!< 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 --}}

{{title}}

{{#if custom_excerpt}}

{{custom_excerpt}}

{{/if}} {{#match @custom.post_image_style "!=" "Hidden"}} {{#if feature_image}}
{{!-- This is a responsive image, it loads different sizes depending on device https://medium.freecodecamp.org/a-guide-to-responsive-images-with-ready-to-use-templates-c400bd65c433 --}} {{#if feature_image_alt}}{{feature_image_alt}}{{else}}{{title}}{{/if}} {{#if feature_image_caption}}
{{feature_image_caption}}
{{/if}}
{{/if}} {{/match}}
{{content}}
{{#if comments}}
{{comments}}
{{/if}}
{{!-- A signup call to action is displayed here, unless viewed as a logged-in member --}} {{#if @site.members_enabled}} {{#unless @member}} {{#unless @site.comments_enabled}} {{#if access}} {{/if}} {{/unless}} {{/unless}} {{/if}} {{!-- Read more links, just above the footer --}} {{#if @custom.show_recent_posts_footer}} {{!-- 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}}" limit="3" as |more_posts|}} {{#if more_posts}} {{/if}} {{/get}} {{/if}} {{/post}}