How can I display other frontmatter info apart from tags?

The following code displays all pages with tags: person in the frontmatter:

{{#each {person}}}
* [[{{name}}]]
{{/each}}

How can I display all pages with tags: person and relationship: family?

Should be as simple as this I believe:

    ```template
    {{#each {page where tags = "person" and relationship = "family"}}}
    {{name}}
    {{/each}}
    ```
1 Like

Thanks!

#protip: this is a nicer way to write the same:

```template
{{#each {person where relationship = "family"}}}
{{name}}
{{/each}}
```

Yes this is more concise. Thanks