mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-30 01:35:32 +00:00
TOns of stuff, made letters more reactive, introduced dark theme toggle
This commit is contained in:
@@ -1,3 +1,20 @@
|
||||
<div class="ha-footer">
|
||||
<a href="/Edition/Kontakt">Kontakt</a> · <a href="/Edition/Datenschutzerklaerung">Datenschutzerklärung</a>
|
||||
</div>
|
||||
<div class="ha-footertext flex flex-row shrink-0 grow-1">
|
||||
<div class="flex grow shrink-0">
|
||||
<div class="ha-themetoggles">
|
||||
<input type="radio" id="ha-toggledark" name="ha-themetoggle">
|
||||
<input type="radio" id="ha-toggletwilight" name="ha-themetoggle">
|
||||
<input type="radio" id="ha-togglebright" name="ha-themetoggle">
|
||||
<label for="ha-toggledark"></label>
|
||||
<label for="ha-toggletwilight"></label>
|
||||
<label for="ha-togglebright"></label>
|
||||
<div class="ha-themetoggleslider">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grow-0 shrink-0">
|
||||
© 2022 Theodor Springmann Stiftung | Stand vom 27.5.2022 | <a href="/Edition/Kontakt">Kontakt</a> ·
|
||||
<a href="/Edition/Datenschutzerklaerung">Datenschutzerklärung</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -12,14 +12,14 @@
|
||||
<div class="ha-metadatadate">
|
||||
@Model.Meta.Date
|
||||
</div>
|
||||
@if (Model.ParsedZHString != null) {
|
||||
@if (Model.ParsedZHString != null && Model.ShowZHData) {
|
||||
<div class="ha-tooltip">
|
||||
<div class="ha-pill">
|
||||
<span>@Model.ParsedZHString</span>
|
||||
<span>@Html.Raw(Model.ParsedZHString)</span>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
else {
|
||||
else if (Model.ParsedZHString == null && Model.ShowZHData) {
|
||||
<div class="ha-tooltip">
|
||||
<div class="ha-pill">
|
||||
<span>Neu</span>
|
||||
|
||||
Reference in New Issue
Block a user