[Deliver skeleton] Sidebar customization

Hi everyone,
I’m playing with the Deliver theme installed as skeleton, and bumped into a (hopefully silly) problem. I want to customize the blocks in the sidebar.html.twig file based on the category of the page.
So for my blog category, all the defaults are great and want them there. But for other collections like one called Facilities (which I created replicating the Archive page), I want this block to show and not the others:

    {% if config.plugins.taxonomylist.enabled %}
<div class="sidebar-content">
	<h4>Facilities</h4>
	<ul>
       {% for post in taxonomy.findTaxonomy({'category':'facilities'}) %}
         <li><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li>
       {% endfor %}
    </ul>
</div>
{% endif %}

I should be adding something of the sort of "and taxonomy.category == ‘facilities’ " to my if-sentence. But I can’t figure out the exact syntax to make it work.

If someone can lead me to the answer I would highly appreciate it. With this solved the hide-and-seek situation is resolved for all the blocks (hopefully) and the sidebar becomes fully customizable.