28 lines
796 B
Handlebars
28 lines
796 B
Handlebars
{{!< default}}
|
|
<div class="mind-post-header unselectable">
|
|
{{#post}}
|
|
<div>
|
|
<h1>{{title}}</h1>
|
|
</div>
|
|
{{/post}}
|
|
<i class="mind-global-header_arrow-down mind-global-header_arrow-down-mid"></i>
|
|
</div>
|
|
|
|
<main>
|
|
<div class="mind-content_main">
|
|
<div> {{!-- Keeping this div to have the same structure as the post.hbs, even though not necessary --}}
|
|
{{#post}}
|
|
<div class="mind-post_content">
|
|
<div class="mind-post_content-header">
|
|
|
|
{{#if feature_image}}
|
|
<img class="mind-post_feature-image" src="{{img_url feature_image size="l"}}" alt="Feature Image"/>
|
|
{{/if}}
|
|
</div>
|
|
{{content}}
|
|
</div>
|
|
{{/post}}
|
|
</div>
|
|
</div>
|
|
</main>
|