Thanks for your reply, Zachary. The following code does not work:
{{ if not .Site.Taxonomies.tags.exclude }}
<h2>No "exclude" in this list</h2>
<ul>
{{ range first 10 site.RegularPages }}
<li>
<a href="{{ .RelPermalink }}">{{- .Title | markdownify }}</a>
</li>
{{ end }}
</ul>
{{ end }}
<h2>Posts without "show"</h2>
<ul>
{{ range first 10 site.RegularPages }}
{{ if not (in .Params.tags "show") }}
<li>
<a href="{{ .RelPermalink }}">{{- .Title | markdownify }}</a>
</li>
{{ end }}
{{ end }}
</ul>