On the Archive page is it possible to exclude posts with a specific tag?
I currently have this block in archives.html:
<div>
{{#allEntries}}
<a href="{{{url}}}">{{title}}</a> <span class="small">{{date}}</span>
<br />
<div class="spacer8"></div>
{{/allEntries}}
</div>
Instead of allEntries
is it possible to do all entries except entries that have tag x?
Yes, you can filter out posts which are tagged 'apple' like so:
<div>
{{#allEntries}}
{{^tagged.apple}}
<a href="{{{url}}}">{{title}}</a> <span class="small">{{date}}</span>
<br />
<div class="spacer8"></div>
{{/tagged.apple}}
{{/allEntries}}
</div>
Answered 15 days ago ·
Edit answer
Newsletter
Get updates on Blot’s latest features and changes. Delivered every three months.