@model List @{ ViewData["Title"] = "Alpha Flame • Soundtrack"; }

The Alpha Flame • Soundtrack

Eight original tracks inspired by key chapters; listen while you read…

@if (Model != null && Model.Any()) { var index = 0; foreach (var track in Model) { var id = $"track-{index++}";

@track.Title

@if (!string.IsNullOrWhiteSpace(track.Chapter) || !string.IsNullOrWhiteSpace(track.Description)) {

@if (!string.IsNullOrWhiteSpace(track.Chapter)) { Chapter: @track.Chapter } @if (!string.IsNullOrWhiteSpace(track.Chapter) && !string.IsNullOrWhiteSpace(track.Description)) { } @if (!string.IsNullOrWhiteSpace(track.Description)) { @track.Description }

}
@if (!string.IsNullOrWhiteSpace(track.LyricsHtml)) { @Html.Raw(track.LyricsHtml) }
} } else {
Tracks will appear here soon.
}
@section Scripts { }