@if (!string.IsNullOrEmpty(Track?.ImagePath)) {
} else { }
@Track?.TrackName @Track?.Artist
@if (!string.IsNullOrEmpty(Track?.Album)) { @Track.Album } @if (!string.IsNullOrEmpty(Track?.Genre)) { @Track.Genre }
@if (Track?.ReleaseDate.HasValue == true) { @Track.ReleaseDate.Value.Year } else {
}