# Multiple Collections Using Index Template + Multi-Word Primary Tag Syntax

**URL:** https://forum.ghost.org/t/multiple-collections-using-index-template-multi-word-primary-tag-syntax/45809
**Category:** Routing
**Created:** [March 18, 2024, 5:15am UTC](https://forum.ghost.org/t/multiple-collections-using-index-template-multi-word-primary-tag-syntax/45809 "2024-03-18T05:15:17Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![CritiqalHit](https://sea1.discourse-cdn.com/flex015/user_avatar/forum.ghost.org/critiqalhit/32/26169_2.png) [@CritiqalHit](https://forum.ghost.org/u/CritiqalHit)
#### Post date: [March 18, 2024, 5:15am UTC](https://forum.ghost.org/t/multiple-collections-using-index-template-multi-word-primary-tag-syntax/45809/1 "2024-03-18T05:15:17Z")

</div>

Wondering if it’s possible to use the index template for more than just the default home collection? Also wondering what the syntax is for primary\_tag that has more than one word. Example:

collections:  
/:  
permalink: /{slug}/  
template: index  
/game-reviews/:  
permalink: /game-reviews/{slug}/  
template: index  
filter: primary\_tag:Game Reviews

---

<div class="post-metadata">

### Author: ![brightthemes](https://sea1.discourse-cdn.com/flex015/user_avatar/forum.ghost.org/brightthemes/32/25099_2.png) [@brightthemes](https://forum.ghost.org/u/brightthemes)
#### Post date: [March 18, 2024, 7:03am UTC](https://forum.ghost.org/t/multiple-collections-using-index-template-multi-word-primary-tag-syntax/45809/2 "2024-03-18T07:03:09Z")

</div>

Yes, you can use the index template for multiple collections.

For filtering you should use the tag slug not the tag name, in most cases that’s the lower case hyphenated version of the name, but you can check it or even change it in your Admin \> Tags, opening the specific tag.

In your case that’s likely `game-reviews`, so this should work:

```yaml
  /game-reviews/:
    permalink: /game-reviews/{slug}/
    template: index
    filter: primary_tag:game-reviews

```
