In an index.pug file added a tbody tag to a table.
This commit is contained in:
parent
98ed4035a7
commit
20b8b62b73
@ -46,15 +46,16 @@ html(lang='en')
|
|||||||
| Your browser doesn't support an audio element, it's sad... But you always can take the #[a(href='/playlist') playlist]!
|
| Your browser doesn't support an audio element, it's sad... But you always can take the #[a(href='/playlist') playlist]!
|
||||||
div
|
div
|
||||||
if (songList.Current() != nil)
|
if (songList.Current() != nil)
|
||||||
p Now playing: #[span#radio-song #{songList.Current().ArtistTitle()}] #[span#radio-duration #{songList.Current().DurationString()}]
|
p Now playing: #[span#radio-song #{songList.Current().ArtistTitle()}] ( #[span#radio-duration-estimate ] #[span#radio-duration #{songList.Current().DurationString()}] )
|
||||||
else
|
else
|
||||||
p Now playing: #[span#radio-song ] #[span#radio-duration ]
|
p Now playing: #[span#radio-song ] ( #[span#radio-duration-estimate ] #[span#radio-duration ] )
|
||||||
p Current/peak listeners: #[span#radio-listeners #{listeners.Current()}] / #[span#radio-listener-peak #{listeners.Peak()}]
|
p Current/peak listeners: #[span#radio-listeners #{listeners.Current()}] / #[span#radio-listener-peak #{listeners.Peak()}]
|
||||||
p
|
p
|
||||||
small Notice: information updates every 45 seconds. But you can #[button#radio-update update] it forcibly.
|
small Notice: information updates every 45 seconds. But you can #[button#radio-update update] it forcibly.
|
||||||
section
|
section
|
||||||
h2 Last #{songList.Len()} songs
|
h2 Last #{songList.Len()} songs
|
||||||
table#last-songs
|
table#last-songs
|
||||||
|
tbody
|
||||||
each song in songList.List()
|
each song in songList.List()
|
||||||
tr
|
tr
|
||||||
td= utils.ToClientTimezone(song.StartAt, r).Format("15:04")
|
td= utils.ToClientTimezone(song.StartAt, r).Format("15:04")
|
||||||
|
Loading…
Reference in New Issue
Block a user