Different layout for a specific taxonomy term value

content/series/series-1/_index.md

+++
title = 'Series One'
date = 2023-06-09T13:27:05-07:00
draft = false
weight = 1
layout = 'series-1'
+++
layouts/
├── _default/
│   ├── baseof.html
│   ├── home.html
│   ├── list.html
│   └── single.html
├── series/
│   ├── series-1.html    <-- custom list page for series-1
│   ├── taxonomy.html
│   └── term.html
└── writing/
    ├── group-by-term.html
    ├── list.html
    └── single.html

2 Likes