How do I create a custom output format for a taxonomy?

I have an authors taxonomy for which I want to render an HTML page at /authors/utkarsh/posts. I was able to create a custom output format layouts/authors/list.posts.html which is built as /authors/utkarsh/posts.html, but I want to get the above-stated behaviour.

Also, I’d like to paginate it as well. Is it possible to do so?

Solved this by defining the custom output format as follows:

outputFormats:
  Posts:
    mediaType: text/html
    path: posts
    notAlternative: true
    permalinkable: true
    isHTML: true
    noUgly: true

and then placing my template as layouts/authors/list.posts.html. Earlier, I had just used basename: posts which was what was causing the issue.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.