mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-12 07:09:10 +01:00
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
|
<div class="footer bg-light">
|
||
|
<script>
|
||
|
if (darkTheme) {
|
||
|
let footer = $(".footer");
|
||
|
footer.removeClass("bg-light");
|
||
|
footer.addClass("bg-dark");
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<div class="footer-content">
|
||
|
<div class="footer-section">
|
||
|
<a href="https://hier-spielt-vielfalt.de/en/">
|
||
|
<img id="hsv-image" src="/media/hsv_light.png" alt="The #TeamDiversity logo" height="50">
|
||
|
</a>
|
||
|
<script>
|
||
|
if (darkTheme)
|
||
|
$("#hsv-image").attr("src", "/media/hsv_dark.png");
|
||
|
</script>
|
||
|
</div>
|
||
|
<div class="footer-section">
|
||
|
© 2021-2024 <a href="https://games.ellpeck.de">Ellpeck Games</a><br>
|
||
|
Published by <a href="https://tophat.studio/">Top Hat Studios</a><br>
|
||
|
</div>
|
||
|
<div class="footer-section">
|
||
|
<a href="https://ellpeck.de/impressum">Impressum</a><br>
|
||
|
<a href="https://ellpeck.de/privacy">Privacy</a><br>
|
||
|
<a href="https://status.ellpeck.de">Status</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|