I have the most recent post from my collection showing up in the hero and I don't want to double up on the post being shown on the archive page. There wasn't a modifier that seemed to fit this situation.
{{ collection from="{{ mount }}" limit="10" paginate="true" as="posts" sort="date:desc|title:desc" }}
<section class="wrap block archive">
{{ if no_results }}
<h3>There were no posts found.</h3>
{{ /if }}
{{ posts }}
<article class="excerpt">
<div class="post-intro">
<a href="{{ url }}"><h3>{{ title }}</h3></a>
<p>{{ post_intro }}</p>
</div>
<div class="feat-img">
{{ if featured_image }}<div class="bg-img" style="background-image: url('{{ featured_image }}');"></div>{{ /if }}
</div>
</article>
{{ /posts }}
{{ partial src="pagination" }}
</section> <!-- END posts -->
{{ /collection }}