mirror of
https://github.com/riwiwa/muzi.git
synced 2026-02-28 03:46:57 -08:00
48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
{{define "profile"}}
|
|
<div class="profile-top">
|
|
<img src="{{.Pfp}}" alt="{{.Username}}'s avatar">
|
|
<div class="username-bio">
|
|
<h1>{{.Username}}</h1>
|
|
<h2>{{.Bio}}</h2>
|
|
</div>
|
|
<div class="profile-top-blank">
|
|
</div>
|
|
<div class="user-stats-top">
|
|
<h3>{{formatInt .ScrobbleCount}}</h3> <p>Listens<p>
|
|
<h3>{{formatInt .ArtistCount}}</h3> <p>Artists<p>
|
|
</div>
|
|
</div>
|
|
<div class="history">
|
|
<h3>Listening History</h3>
|
|
<table>
|
|
<tr>
|
|
<th>Artist</th>
|
|
<th>Title</th>
|
|
<th>Timestamp</th>
|
|
</tr>
|
|
{{if .NowPlayingTitle}}
|
|
<tr>
|
|
<td>{{.NowPlayingArtist}}</td>
|
|
<td>{{.NowPlayingTitle}}</td>
|
|
<td>Now Playing</td>
|
|
</tr>
|
|
{{end}}
|
|
{{$artists := .Artists}}
|
|
{{$times := .Times}}
|
|
{{range $index, $title := .Titles}}
|
|
<tr>
|
|
<td>{{index $artists $index}}</td>
|
|
<td>{{$title}}</td>
|
|
<td title="{{formatTimestampFull (index $times $index)}}">{{formatTimestamp (index $times $index)}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
</div>
|
|
<div class="page_buttons">
|
|
{{if gt .Page 1 }}
|
|
<a href="/profile/{{.Username}}?page={{sub .Page 1}}">Prev Page</a>
|
|
{{end}}
|
|
<a href="/profile/{{.Username}}?page={{add .Page 1}}">Next Page</a>
|
|
</div>
|
|
{{end}}
|