basho/partials/post_content.hbs
2025-06-11 22:59:02 +10:00

52 lines
1.3 KiB
Handlebars

{{^is "page"}}
{{#if access}}<progress class="post-progress"></progress>{{/if}}
{{/is}}
<article class="post-section">
{{#match @page.show_title_and_feature_image}}
{{>post_header}}
{{/match}}
<div class="post-content global-padding">
{{#if access}}
{{content}}
{{^is "page"}}
{{>post_share}}
{{/is}}
{{else}}
{{#if html}}
<div class="members-cta-teaser">
{{{html}}}
</div>
{{/if}}
{{>members/cta}}
{{/if}}
</div>
</article>
{{^is "page"}}
{{>post_navigation}}
<div class="comments-section global-padding">
{{#if access}}
{{#if @custom.disqus_shortname}}
{{>services/disqus}}
{{else if comments}}
<div class="comments-wrap">
<div class="comments-content">
<div class="comments-header">
<span class="global-subtitle-title">
<h3>{{t "Member discussion"}}</h3>
{{comment_count empty=(t "0 comments") singular=(t "comment") plural=(t "comments") autowrap="span"}}
</span>
</div>
{{comments title="" count=false mode="auto"}}
</div>
</div>
{{/if}}
{{/if}}
</div>
{{#if primary_tag}}
{{#get "posts" limit="6" filter="tags:{{primary_tag.slug}}+id:-{{id}}+feature_image:-null" include="authors" as |special_posts|}}
{{#if special_posts}}
{{>related label=(t "You might {start-bold}also like{end-bold}" start-bold="<span>" end-bold="</span>")}}
{{/if}}
{{/get}}
{{/if}}
{{/is}}