Make sure you don't render the same article twice

What version of Ghost are you using? latest

Hi,

On homepage I am rendering 4 newest posts first:

{{#get "posts" include="authors" limit="4"}}
        {{#foreach posts}}
            {{> "loop-grid"}}
        {{/foreach}} 
{{/get}}

Then I want to print posts from given category:

{{#get "posts" include="tags" filter="tag:interview" limit="10" }}
    {{#foreach posts}}
        {{> "loop-grid"}}
    {{/foreach}}
{{/get}}

But when I use this code, new article with tag interview is displayed on the top and then in category interview again. I want to display each post only once on the page. And I don’t want to use any special tag for 4 newest posts.

Is there any way how to solve this?

Thanks
Jan