ghost-theme-sd.ai/partials/components/post-list.hbs

34 lines
1.3 KiB
Handlebars
Raw Normal View History

2023-07-10 07:03:07 +01:00
<section class="gh-container is-{{#match @custom.post_list_style "List"}}list{{else}}grid{{/match}}{{#if @custom.show_sidebar}} has-sidebar{{/if}}{{#if @custom.hide_images}} no-image{{/if}} gh-outer">
2023-07-10 04:58:34 +01:00
<div class="gh-container-inner gh-inner">
<h2 class="gh-container-title">Latest</h2>
2023-07-10 05:17:54 +01:00
2023-07-10 04:58:34 +01:00
<main class="gh-main">
<div class="gh-feed">
2023-07-19 06:12:02 +01:00
{{#foreach posts from="8" limit="9"}}
2023-07-30 11:48:03 +01:00
{{> "post-card"}}
2023-07-10 04:58:34 +01:00
{{/foreach}}
</div>
</main>
2023-07-10 05:17:54 +01:00
{{#if @custom.show_sidebar}}
<aside class="gh-sidebar">
<section class="gh-about">
{{#if @site.icon}}
<img class="gh-about-icon" src="{{@site.icon}}" alt="{{@site.title}}">
{{/if}}
<h3 class="gh-about-title is-title">{{@site.title}}</h3>
2023-07-10 05:17:54 +01:00
{{#if @site.description}}
<p class="gh-about-description is-body">{{@site.description}}</p>
2023-07-10 05:17:54 +01:00
{{/if}}
{{#if @site.members_enabled}}
{{#unless @member}}
2023-07-10 07:27:31 +01:00
<button class="gh-button">Subscribe</button>
2023-07-10 05:17:54 +01:00
{{/unless}}
{{/if}}
</section>
</aside>
{{/if}}
2023-07-10 04:58:34 +01:00
</div>
</section>