It's that time again, let's do this:
# Books
```base
properties:
file.name:
displayName: Title
note.image:
displayName: Cover
views:
- type: cards
name: Media Cards
filters:
and:
- file.folder == "Arts & Media/Books"
- yearRead.contains(2026)
order:
- file.name
sort:
- property: created
direction: ASC
image: note.cover
rowHeight: tall
imageFit: contain
```
# Movies & TV
```base
properties:
file.name:
displayName: Title
note.image:
displayName: Cover
views:
- type: cards
name: Media Cards
filters:
and:
- or:
- file.folder == "Arts & Media/Media DB/series"
- file.folder == "Arts & Media/Media DB/movies"
- yearRead.contains(2026)
order:
- file.name
sort:
- property: created
direction: ASC
image: note.image
rowHeight: tall
imageFit: contain
```
# Games
```base
properties:
file.name:
displayName: Title
note.image:
displayName: Cover
views:
- type: cards
name: Media Cards
filters:
and:
- yearRead.contains(2026)
- or:
- file.folder == "Arts & Media/Media DB/games"
- file.folder == "Arts & Media/Media DB/boardgames"
order:
- file.name
sort:
- property: created
direction: ASC
image: note.image
rowHeight: tall
imageFit: contain
```