aboutsummaryrefslogtreecommitdiffstats
path: root/templates/index.tmpl
blob: 1ab17260f617e1895c6a5793dc4748fa8188d111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{template "header" . }}
<h2>Recent Listens</h2>
<ul class="scrobbles">
	{{if .NowPlaying}} {{template "song" .NowPlaying}} {{end}}
{{- range .Scrobbles}}
	{{template "song" .}}
{{- end}}
</ul>
{{template "footer" }}

{{define "song"}}
	<li>
		<img class="cover" src="{{or .Image "https://lastfm-img2.akamaized.net/i/u/64s/4128a6eb29f94943c9d206c08e625904.png"}}"/>
		<div>
			{{.Artist}} — {{.TrackName}}<br/>
			<span class="album">in {{.Album}}</span>
		</div>
		<div class="like">
			<span class="time">{{.Time | ago}}</span><br/>
			<span class="swap">
				<i class="material-icons one">favorite_border</i>
				<i class="material-icons two">favorite</i>
			</span>
		</div>
	</li>
{{end}}