Ghost_Ruby_Theme/partials/widgets/widget-recent.hbs

14 lines
506 B
Handlebars
Raw Normal View History

2019-05-27 16:34:56 +03:00
<div class="widget widget-recent u-shadow">
2020-09-24 05:25:42 +03:00
<h4 class="widget-title">Recent Posts</h4>
{{#get "posts" limit="3" include="tags" as |recents|}}
{{#if recents}}
<div class="recent-posts">
2020-11-09 11:37:24 +02:00
{{#foreach recents visibility="all"}}
2020-09-24 05:25:42 +03:00
<article class="recent">
{{> post-header tag="h5" hide_tag=true show_date=true}}
</article>
{{/foreach}}
</div>
{{/if}}
{{/get}}
2019-05-01 11:20:04 +03:00
</div>