# How do I create multiple taxonomy lists?

**URL:** https://discourse.gohugo.io/t/how-do-i-create-multiple-taxonomy-lists/29688
**Category:** support
**Tags:** taxonomy
**Created:** [November 28, 2020, 4:32pm UTC](https://discourse.gohugo.io/t/how-do-i-create-multiple-taxonomy-lists/29688 "2020-11-28T16:32:16Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![joebudi](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/joebudi/32/12388_2.png) [@joebudi](https://discourse.gohugo.io/u/joebudi)
#### Post date: [November 28, 2020, 4:32pm UTC](https://discourse.gohugo.io/t/how-do-i-create-multiple-taxonomy-lists/29688/1 "2020-11-28T16:32:16Z")

</div>

Hey!

Within my site, I utilize the two default taxonomies for the blog. I have designed a list page to display these taxonomies, so when a user clicks a category, they see a list of posts relating to that category, and it works well.

I am creating a new section - integrations - where I want to list the software which our platform integrates with. I want to break these integrations down into categories. I then want to display the results for each of the categories in a list, like the blog above. But, I want to design the integrations list differently. How do I create two taxonomy list pages?

Also, currently, the taxonomy category pages reside on a URL like [website.com/category](http://website.com/category). Is it possible to have: [website.com/blog/category](http://website.com/blog/category) and [website.com/integrations/category](http://website.com/integrations/category)?

Thanks  
Joe

---

<div class="post-metadata">

### Author: ![jmooring](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/jmooring/32/4214_2.png) [@jmooring](https://discourse.gohugo.io/u/jmooring)
#### Post date: [November 28, 2020, 5:21pm UTC](https://discourse.gohugo.io/t/how-do-i-create-multiple-taxonomy-lists/29688/2 "2020-11-28T17:21:49Z")

</div>

Your are currently assigning one or more categories to your “blog” pages.

You want to assign one or more categories to your “integration” pages.

Will the two content types share a particular category? For example, would you assign the category “foo” to both a “blog” page and an “integration” page?

---

<div class="post-metadata">

### Author: ![joebudi](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/joebudi/32/12388_2.png) [@joebudi](https://discourse.gohugo.io/u/joebudi)
#### Post date: [November 28, 2020, 5:46pm UTC](https://discourse.gohugo.io/t/how-do-i-create-multiple-taxonomy-lists/29688/3 "2020-11-28T17:46:43Z")

</div>

I can keep them separate.

---

<div class="post-metadata">

### Author: ![jmooring](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/jmooring/32/4214_2.png) [@jmooring](https://discourse.gohugo.io/u/jmooring)
#### Post date: [November 28, 2020, 6:08pm UTC](https://discourse.gohugo.io/t/how-do-i-create-multiple-taxonomy-lists/29688/4 "2020-11-28T18:08:39Z")

</div>

So how about using a different taxonomy for your integration pages?

config.toml

```auto
[taxonomies]
  category = "categories"
  tag = "tags"
  type = "types"

```

Then create unique layouts as needed…

| Taxonomy | List of terms | List of pages with a particular term |
| --- | --- | --- |
| categories | layouts/category/taxonomy.html | layouts/category/term.html |
| tags | layouts/tag/taxonomy.html | layouts/tag/term.html |
| types | layouts/type/taxonomy.html | layouts/type/term.html |

See [https://gohugo.io/templates/lookup-order/](https://gohugo.io/templates/lookup-order/)

---

<div class="post-metadata">

### Author: ![joebudi](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/joebudi/32/12388_2.png) [@joebudi](https://discourse.gohugo.io/u/joebudi)
#### Post date: [November 28, 2020, 6:12pm UTC](https://discourse.gohugo.io/t/how-do-i-create-multiple-taxonomy-lists/29688/5 "2020-11-28T18:12:48Z")

</div>

Thank you for your feedback. This seems like a great solution and it answers my query re the multiple taxonomies. I will try this tonight. Once again, thank you

---

<div class="post-metadata">

### Author: ![jmooring](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/jmooring/32/4214_2.png) [@jmooring](https://discourse.gohugo.io/u/jmooring)
#### Post date: [November 28, 2020, 7:11pm UTC](https://discourse.gohugo.io/t/how-do-i-create-multiple-taxonomy-lists/29688/6 "2020-11-28T19:11:03Z")

</div>

You also asked about changing the URL of taxonomy and term pages.

If you want the list of categories to appear at /blog/categories:

1. Create a new page:

2. Edit the new page:

If you want the list of pages with the category “foo” to appear at /blog/category/foo, add a [`permalinks`](https://gohugo.io/content-management/urls/#permalinks) section to your site configuration file.

```auto
[permalinks]
categories = "/blog/category/:slug"

```

---

<div class="post-metadata">

### Author: ![jmooring](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/jmooring/32/4214_2.png) [@jmooring](https://discourse.gohugo.io/u/jmooring)
#### Post date: [February 7, 2023, 9:51am UTC](https://discourse.gohugo.io/t/how-do-i-create-multiple-taxonomy-lists/29688/7 "2023-02-07T09:51:29Z")

</div>

A post was split to a new topic: [Unique taxonomies per section/type](https://discourse.gohugo.io/t/unique-taxonomies-per-section-type/42828)
