mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-30 09:45:32 +00:00
Unterstützung von Übersetzungen + Dark Mode
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
<div class="ha-headcomment">
|
||||
<div class="ha-commentmetatext">
|
||||
Briefwechsel mit  
|
||||
<a class="ha-reversefilter" asp-controller="Index" asp-action="Index">← Alle Briefe</a>
|
||||
<a class="ha-reversefilter dark:bg-black" asp-controller="Index" asp-action="Index">← Alle Briefe</a>
|
||||
</div>
|
||||
@Html.Raw(Model.PersonComment.ParsedComment)
|
||||
@if (Model.PersonComment.ParsedSubComments != null && Model.PersonComment.ParsedSubComments.Any()) {
|
||||
@@ -91,14 +91,14 @@
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
<div class="mr-2 leading-snug text-base px-1 bg-slate-200">
|
||||
<div class="mr-2 leading-snug px-1 bg-slate-200 dark:bg-black rounded text-sm">
|
||||
Derzeit kritisch geprüft, ediert und hochgeladen sind Briefe bis einschließlich @Model.EndYear (= @Model.EndPageString).
|
||||
</div>
|
||||
<form class="ha-zhform" id="ha-zhform">
|
||||
<span>Z H Band</span>
|
||||
<select name="zhvolume" id="ha-zhformvolume">
|
||||
<form class="ha-zhform font-sans" id="ha-zhform">
|
||||
<span>Z H</span>
|
||||
<select class="text-base" name="zhvolume" id="ha-zhformvolume">
|
||||
@foreach (var volume in Model.AvailablePages.OrderBy(x => x.Key)) {
|
||||
<option>@volume.Key</option>
|
||||
<option value="@volume.Key">@HaWeb.HTMLHelpers.ConversionHelpers.ToRomanSafe(volume.Key)</option>
|
||||
}
|
||||
</select>
|
||||
<span>/ </span>
|
||||
@@ -156,4 +156,5 @@
|
||||
var AvailableLetters = new Set(@Html.Raw(Json.Serialize(Model.AvailableLetters)))
|
||||
var AvailablePages = @Html.Raw(Json.Serialize(Model.AvailablePages))
|
||||
</script>
|
||||
<script defer src="/js/index.js" asp-append-version="true"></script>
|
||||
<script defer src="/js/index.js" asp-append-version="true"></script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user