migrate to bases

This commit is contained in:
Steph Ango
2025-05-24 16:03:46 -07:00
parent 831af0dd26
commit b160d8bec5
32 changed files with 588 additions and 306 deletions

View File

@@ -3,14 +3,25 @@ tags:
- categories
---
```dataview
table without id
file.link as Title,
author as Author,
created as Clipped,
published as Published
where
contains(categories,this.file.link) and
!contains(file.name, "Template")
sort clipped desc
```
```base
display:
file.name: Title
property.author: Author
property.created: Clipped
property.published: Published
views:
- type: table
name: Table
filters:
and:
- contains(categories, concat("[[", this.file.name, "]]"))
- not(contains(file.name, "Template"))
order:
- file.name
- author
- created
- published
sort:
- column: clipped
direction: DESC
```