Merge commit '346b60358dd8ec2ca228e6635bff9d7914b398b7'

This commit is contained in:
Bjørn Erik Pedersen
2025-01-23 09:47:46 +01:00
384 changed files with 3305 additions and 3271 deletions

View File

@@ -22,15 +22,15 @@ The following are common use cases for content views:
To create a new view, create a template in each of your different content type directories with the view name. The following example contains an "li" view and a "summary" view for the `posts` and `project` content types. As you can see, these sit next to the [single template], `single.html`. You can even provide a specific view for a given type and continue to use the `_default/single.html` for the primary view.
```txt
layouts/
posts/
li.html
single.html
summary.html
project/
li.html
single.html
summary.html
layouts/
├── posts/
│ ├── li.html
│ ├── single.html
│ └── summary.html
├── project/
│ ├── li.html
│ └── single.html
└── summary.html
```
## Which template will be rendered?