aboutsummaryrefslogtreecommitdiffstats
path: root/templates/index.tmpl
blob: 8468b31593dc6afab3f8e58b477c0947a87dd2a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{template "header" . }}
<h2>Recent Listens</h2>
<ul class="scrobbles">
{{- range .Scrobbles}}
	<li>
		<img 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="album">{{ago .Time}}</span><br/>
			<i class="material-icons">favorite_border</i>
		</div>
	</li>
{{- end}}
</ul>
{{template "footer" }}