Find Source: https://stackoverflow.com/questions/51093245/how-to-hide-posts-in-a-label-from-the-home-page-blogger
<b:include data='post' name='post'/>
and replace it with these lines:<b:if cond='data:blog.url == data:blog.homepageUrl'>
<b:if cond='data:post.labels none ( l => l.name == "Pasta" )'>
<b:include data='post' name='post'/>
</b:if>
<b:else/>
<b:include data='post' name='post'/>
</b:if>