Is there any reason why mysite/blog/ list page doesn’t use the blog/list.html layout given my directory structure? According to [SOLVED] Hugo uses _default/list.html instead of blog/list.html for /blog/ and Unify the section template lookup order, please comment I should be able to.
Hugo version: v0.49/extended darwin/amd64 BuildDate: unknown
├── content
│ ├── _index.md
│ ├── blog
│ │ ├── post-1.md
│ │ ├── post-2.md
│ │ ├── post-3.md
│ ├── get-started.md
│ └── services.md
├── data
├── layouts
│ ├── 404.html
│ ├── _default
│ │ ├── baseof.html
│ │ ├── list.html -----> Don't want to use this layout
│ │ ├── taxonomy.html
│ │ └── terms.html
│ ├── blog
│ │ ├── li.html
│ │ ├── list.html -----> Want to use this layout
│ │ ├── single.html
│ │ ├── summary-with-image.html
│ │ └── summary.html
│ ├── get-started
│ │ └── single.html
│ ├── index.html
│ ├── partials
│ │ ├── site-footer.html
│ │ ├── site-header.html
│ │ ├── site-scripts-footer.html
│ │ ├── site-scripts-head.html