@page "/np" @using zotanpw.Backend.database @model NowPlayingModel @{ ViewData["title"] = "now playing"; ViewData["og-desc"] = "Here you can see what kind of music I've been listening to lately."; var db = new Database.DbConn(); var albums = db.AlbumHistory.OrderByDescending(p => p.DateTime).Take(30); }

Here you can see what kind of music I've been listening to lately. This table is updated every couple minutes from multiple data sources.

Links to my music library / webplayer are accessible to authorized users only. If you think this includes you, but something isn't working, DM me.

@foreach (var album in albums) { }
Date Artist Album Link
@album.DateTime.ToString("yyyy-MM-dd") @album.Artist @album.Title @album.Source