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