On my homepage I have it list all of the pages on my website:
<ul class="patterns-list" id="list">
{{ range .Site.Pages }}
<li>
<h2>
<a href="{{ .Permalink }}">
<svg
class="bookmark"
aria-hidden="false"
viewBox="0 0 40 50"
focusable="false"
>
<use xlink:href="#bookmark"></use>
</svg>
{{ .Title }}
</a>
</h2>
</li>
{{ end }}
</ul>
instead of listing ALL of the pages, I’d like to only list the ones with certain tags. For example, let’s say I wanted to list all pages on my site with the tags “red” OR “blue”.
How should I modify the “{{ range .Site.Pages }}” section to accomplish this?