You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.4 KiB
76 lines
1.4 KiB
11 months ago
|
---
|
||
|
DocType: "Vinyl"
|
||
|
type: "musicRelease"
|
||
|
subType: "Album"
|
||
|
title: "Dream of a Lifetime"
|
||
|
englishTitle: "Dream of a Lifetime"
|
||
|
year: "1985"
|
||
|
dataSource: "MusicBrainz API"
|
||
|
url: "https://musicbrainz.org/release-group/dc1fb531-35ce-3349-ba4f-72ffc8fd811e"
|
||
|
id: "dc1fb531-35ce-3349-ba4f-72ffc8fd811e"
|
||
|
genres:
|
||
|
- "disco"
|
||
|
- "soul"
|
||
|
artists:
|
||
|
- "Marvin Gaye"
|
||
|
image: "https://coverartarchive.org/release-group/dc1fb531-35ce-3349-ba4f-72ffc8fd811e/front"
|
||
|
rating: 6
|
||
|
personalRating: 0
|
||
|
---
|
||
|
Parent:: [[@Vinyls|Vinyls]]
|
||
|
|
||
|
---
|
||
|
|
||
|
 
|
||
|
|
||
|
# `$= dv.current().title`
|
||
|
|
||
|
 
|
||
|
|
||
|
```toc
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
### Details
|
||
|
|
||
|
 
|
||
|
|
||
|
**Genres**:
|
||
|
`$= dv.current().genres.length === 0 ? ' - none' : dv.list(dv.current().genres)`
|
||
|
|
||
|
 
|
||
|
|
||
|
```dataview
|
||
|
list without id
|
||
|
"<table><tbody><tr><td><a class=heading>Type</a></td>"
|
||
|
+
|
||
|
"<td><span style='color: var(--footnote);'>" + this.subType + "</span></td></tr>"
|
||
|
+
|
||
|
"<tr><td><a class=heading>Online Rating</a></td>"
|
||
|
+
|
||
|
"<td><span style='color: var(--footnote);'>" + this.rating + "</span></td></tr>"
|
||
|
+
|
||
|
"<tr><td><a class=heading>Artists</a></td>"
|
||
|
+
|
||
|
"<td><span style='color: var(--footnote);'>" + this.artists + "</span></td></tr>"
|
||
|
+
|
||
|
"<tr><td><a class=heading>Premiered</a></td>"
|
||
|
+
|
||
|
"<td><span style='color: var(--footnote);'>" + this.year + "</span></td></tr></tbody></table>"
|
||
|
FROM "03.05 Vinyls/Dream of a Lifetime (by Marvin Gaye - 1985)"
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
---
|
||
|
|
||
|
 
|
||
|
|
||
|
### Poster
|
||
|
|
||
|
 
|
||
|
|
||
|
`$= '![Image|360](' + dv.current().image + ')'`
|
||
|
|