--- layout: contained --- {% assign allPosts = site.posts %} {% if page.category %} {% assign catPosts = allPosts | where: "categories", page.category %} {% else %} {% assign catPosts = allPosts %} {% endif %} {% if page.tag %} {% assign posts = catPosts | where: "tags", page.tag %} {% else %} {% assign posts = catPosts %} {% endif %}
{% for post in posts %}

{{ post.title }}

{% endfor %}