Unique posts on homepage while using Headlines theme

I’m currently using Headlines theme and I want to make the posts on the homepage be unique and not repetitive.

Is it possible to show only unique articles on homepage? As of now the Latest posts are also appearing again under their respective tags section.

It depends on how you want to structure your posts.

You could potentially fetch only featured posts or posts with a certain tag for the first section then exclude featured posts from the tags section. For this you would need to edit the theme files.

Example, the “Latest” section:

{{#get "posts" include="authors" limit="7" filter="featured:true"}}
  {{#foreach posts}}
    {{> "loop-grid"}}
  {{/foreach}}
{{/get}}

Then in the “Topic” section (partials/topic-grid.hbs):

{{#get "posts" include="tags,authors" filter="tag:{{slug}}+featured:false" limit="7"}}
  {{#foreach posts}}
    {{> "loop-grid"}}
  {{/foreach}}
{{/get}}

This was something I asked @uri to do when his team customized my site… I’m not sure what his solution was but it worked like a charm. It’s very odd to me that anyone would want repetitive posts all down the homepage! I’m thrilled with how it looks now - https://www.berkeleyscanner.com/

This should be changed by Ghost in the default Headline theme please

It is strange to have repeating posts in a latest section

I second that. I love the look of Headline, but customizations in the YAML routing file don’t work either.