{{#foreach posts from="1" to="8"}}
{{> "components/small-card"}}
{{/foreach}}
{{#foreach posts limit="1"}}
{{> "components/big-card"}}
{{/foreach}}
{{> "components/newsletter"}}
{{#foreach posts from="2" to="8"}}
{{> "components/horizontal-card"}}
{{/foreach}}
{{#get "posts" filter="featured:true" include="tags" limit="8"}}
{{#if posts}}
{{t "Featured Articles"}}
{{plural posts.length empty=(t "No Articles") singular=(t "1 Article") plural=(t "% Articles")}}
{{#foreach posts}}
{{> "components/extra-small-card" }}
{{/foreach}}
{{/if}}
{{/get}}