Update lockdown message

This commit is contained in:
Christopher Teutsch 2020-03-15 20:04:30 +01:00
parent 1b62853120
commit c6baf79a51

View File

@ -100,8 +100,8 @@ $v = file_get_contents($VISITORS_FILE);
<div class="card-body">
<h5 class="card-title">Das Chaosdorf ist geschlossen</h5>
<i class="material-icons" id="state-icn" style="color:red;font-size:16rem;">lock</i>
<p class="card-text font-weight-normal">Das Chaosdorf ist als Vorsichtsmaßnahme bis auf Weiteres für Besucher geschlossen.</p>
<p class="card-text font-weight-normal">Für weitere Informationen schau bitte auf <a href="https://chaosdorf.de/">den Blog</a>.</p>
<p class="card-text font-weight-normal">Das Chaosdorf ist aufgrund <a href="https://www.land.nrw/de/pressemitteilung/landesregierung-beschliesst-weitere-massnahmen-zur-eindaemmung-der-corona-virus">einer Verordnung der Landesregierung</a> geschlossen.</p>
<p class="card-text font-weight-normal">Das gilt mindestens bis <span class="font-weight-bold">19. April 2020</span>.</p>
</div>
</div>
<?php else: ?>
@ -165,4 +165,4 @@ $v = file_get_contents($VISITORS_FILE);
<?php
if(!$v) $v=0;
$v++;
file_put_contents('/media/sg/dorf.jetzt_visitors', $v);
file_put_contents($VISITORS_FILE, $v);