A lot more templates and examples

This commit is contained in:
Steph Ango
2023-09-13 09:44:12 -07:00
parent a3aa9b684f
commit a06824db78
41 changed files with 338 additions and 45 deletions

15
References/Bass on Top.md Normal file
View File

@@ -0,0 +1,15 @@
---
category:
- "[[Albums]]"
tags:
- music
- albums
- reference
genre:
- "[[Jazz]]"
artist: "[[Paul Chambers]]"
year: 1957
rating: 7
created: 2023-09-12
---

11
References/Jazz.md Normal file
View File

@@ -0,0 +1,11 @@
---
tags:
- music/genres
---
```dataview
table without id file.link as Album, artist as "Artist", genre as "Genre", rating as "Rating"
from #albums
where genre = this.file.link or contains(genre,this.file.link)
sort rating desc
```

33
References/Kevin Kelly.md Normal file
View File

@@ -0,0 +1,33 @@
---
category:
- "[[People]]"
tags:
- people
- authors
created: 2023-09-12
---
## Books
```dataview
table without id file.link as Title, year as "Year", rating as "Rating"
where author = this.file.link or contains(author,this.file.link)
sort rating desc
```
# Clippings
```dataview
table without id file.link as Title, published as Published
from #clippings
where author = this.file.link or contains(author,this.file.link)
sort rating desc
```
# Podcast episodes
```dataview
table without id file.link as Podcast, published as Published
from #episodes
where contains(guests,this.file.link)
sort rating desc
```

View File

@@ -0,0 +1,23 @@
---
category:
- "[[Books]]"
cover: https://books.google.com/books/content?vid=ISBN0201483408&printsec=frontcover&img=1&zoom=3
isbn: 201483408
isbn13: 9780201483406
topics:
- "[[Emergence]]"
grId: "243725"
length: "528"
author:
- "[[Kevin Kelly]]"
genre:
- "[[Futurism]]"
created: 2023-09-12
last: 2023-09-12
rating: 7
year: 1992
via: ""
tags:
- books
- reference
---

View File

@@ -0,0 +1,16 @@
---
category:
- "[[People]]"
tags:
- people
- musicians
created: 2023-09-13
---
## Albums
```dataview
table without id file.link as Album, artist as "Artist", rating as "Rating"
from #albums
where artist = this.file.link or contains(artist,this.file.link)
sort rating desc
```

View File

@@ -0,0 +1,15 @@
---
category:
- "[[Podcast episodes]]"
tags:
- podcast
- episodes
show: "[[Well Made]]"
guests:
- "[[Kevin Kelly]]"
topics: []
episode: "145"
rating: 7
published: 2021-04-15
last: 2023-09-12
---

17
References/Well Made.md Normal file
View File

@@ -0,0 +1,17 @@
---
category:
- "[[Podcasts]]"
host:
- "[[Steph Ango]]"
rating:
tags:
- podcast
---
## Episodes
```dataview
table without id link(file.link, "Ep. " + string(episode)) as Episode, guests as "Guest", rating as "Rating"
from #podcast and #episodes
where show = this.file.link
sort episode desc
```