TinyLifeWeb/web/_includes/footer.html

41 lines
1.6 KiB
HTML
Raw Normal View History

2024-08-07 18:58:33 +02:00
<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/">
2024-08-14 13:21:50 +02:00
<img id="hsv-image" src="/media/hsv_light.png" alt="The #TeamDiversity logo" width="150">
2024-08-07 18:58:33 +02:00
</a>
2024-08-14 13:21:50 +02:00
<br>
<a href="https://www.game.de/en/members/">
<img src="/media/game.png" alt="The German Games Industry Association logo" width="150">
</a>
2024-08-07 18:58:33 +02:00
<script>
if (darkTheme)
$("#hsv-image").attr("src", "/media/hsv_dark.png");
</script>
</div>
<div class="footer-section">
&copy; 2021-2024 <a href="https://games.ellpeck.de">Ellpeck Games</a><br>
Published by <a href="https://tophat.studio/">Top Hat Studios</a><br>
<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>
2024-08-11 22:16:19 +02:00
<div class="footer-section">
<a href="./common_issues">Fixing Common Issues</a><br>
<a href="./content_policy">Community Policy</a><br>
<a href="./preview">About Preview Versions</a><br>
<a href="https://docs.tinylifegame.com">Developer Docs</a><br>
<a href="https://press.ellpeck.de/tinylife/">Press Kit</a>
</div>
2024-08-07 18:58:33 +02:00
</div>
</div>