This is really killing me, but I can't figure out what's going on and any insight would be enormously appreciated. I'm trying to return a list of all posts in a category using:
{% for post in taxonomy.findTaxonomy({'category': ['patterns']}) %}
<tr>
<td class="title">{{ post.title }}</td>
<td class="summary">{{ post.summary }}</td>
<td class="link"><i class="fa fa-rocket"></i> <a href="{{ post.url }}" title="view the {{ post.title }} micro-pattern">view it!</a></td>
</tr>
{% endfor %}
There are at minimum 30 posts under that category, but this loop returns nothing. I tried:
{% for post in taxonomy.findTaxonomy({'category': 'patterns'}) %}
{% for post in taxonomy.findTaxonomy({'category': [patterns]}) %}
To no avail. I'd even be happy with a list of all posts right now, so I can dwindle it down by specific titles.
Cheers.