{{> "lists/post-feed"}}
{{#get "posts" filter="featured:true" limit="8" include="authors,tags"}}
{{> "lists/post-items" posts=posts}}
{{/get}}
{{#get "posts" order="updated_at desc" limit="8" include="authors,tags"}}
{{> "lists/post-items" posts=posts}}
{{/get}}
{{#get "tags" limit="4" include="count.posts"}}
{{#foreach tags}}
{{name}}
{{#if description}}
{{description}}
{{else}}
{{plural count.posts empty="No posts yet" singular="% post in this category" plural="% posts in this category"}}
{{/if}}
View all ↗
{{#get "posts" filter=(concat "tag:" slug) limit="5"}}
{{#foreach posts}}
- {{title}}
{{/foreach}}
{{/get}}
{{/foreach}}
{{/get}}