@model BriefeViewModel;
@await Html.PartialAsync("/Views/Shared/_LetterHead.cshtml", Model.MetaData)
@if (Model.MetaData.Next != null || Model.MetaData.Prev != null) { }
@if (Model.ParsedText != null) { @Html.Raw(@Model.ParsedText) }
@if (Model.ParsedTradition != null) { @Html.Raw(Model.ParsedTradition) } @if(Model.ParsedHands != null && Model.ParsedHands.Any()) {
Zusätze fremder Hand
@foreach (var hand in Model.ParsedHands) { @* Not beautiful, but here's whitespace in between otherwise *@ }
@hand.Item1
@if (!String.IsNullOrEmpty(hand.Item2)) {
–@hand.Item2
}
@hand.Item3
} @if (Model.ParsedEdits != null) {
Textkritische Anmerkungen
@foreach (var edit in Model.ParsedEdits) { }
@edit.Item1
@if (!String.IsNullOrEmpty(edit.Item2)) {
–@edit.Item2
}
@Html.Raw(@edit.Item3) @Html.Raw(@edit.Item4)
}