This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
97 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
<center>![TurnipTales Logo](icon_small.png "TurnipTales")</center> | ||
<center> | ||
![TurnipTales Logo](icon_small.png "TurnipTales") | ||
|
||
### <center>**TurnipTales.net** | ||
## **Willkommen im TurnipTales Wiki!** | ||
|
||
!!! info "Willkommen im Wiki" | ||
Hier findest du Antworten auf alle möglichen Fragen zu unseren Systemen.</br> | ||
Falls du nicht fündig wurdest, hilft dir unser Support gerne weiter. | ||
|
||
Du befindest dich im offiziellen Wiki von TurnipTales. Hier findest du Antworten auf alle möglichen Fragen zu unseren Systemen. Falls du hier doch nicht fündig werden solltest, hilft dir unser Support gerne weiter. | ||
**[Webseite](https://turniptales.net/) — [Forum](https://forum.turniptales.net/forum/) — [Discord](https://discord.gg/turniptales)** | ||
|
||
### <center>**Offizielle Links** | ||
<center>**[Webseite](https://turniptales.net/) - [Forum](https://forum.turniptales.net/forum/) - [Discord](https://discord.gg/turniptales)** | ||
<div class="grid cards" markdown> | ||
|
||
- :fontawesome-brands-html5: __COMMANDS__ | ||
- :fontawesome-brands-js: __FRAKTIONEN UND ORGANISATIONEN__ | ||
|
||
</div> |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block announce %} | ||
|
||
<script> | ||
window.onload = function() { | ||
if (document.title === "TurnipTales Wiki") { | ||
const bannerElements = document.getElementsByClassName("md-banner"); | ||
for (let i = 0; i < bannerElements.length; i++) { | ||
bannerElements[i].remove(); | ||
} | ||
|
||
const headerElements = document.getElementsByTagName("header"); | ||
for (let i = 0; i < headerElements.length; i++) { | ||
headerElements[i].style.backgroundColor = "transparent"; | ||
headerElements[i].style.backgroundImage = "none"; | ||
} | ||
|
||
const headerInnerElements = document.getElementsByClassName("md-header__inner"); | ||
for (let i = 0; i < headerInnerElements.length; i++) { | ||
headerInnerElements[i].remove(); | ||
} | ||
|
||
const sidebarPrimaryElements = document.getElementsByClassName("md-sidebar md-sidebar--primary"); | ||
for (let i = 0; i < sidebarPrimaryElements.length; i++) { | ||
sidebarPrimaryElements[i].remove(); | ||
} | ||
|
||
const sidebarSecondaryElements = document.getElementsByClassName("md-sidebar md-sidebar--secondary"); | ||
for (let i = 0; i < sidebarSecondaryElements.length; i++) { | ||
sidebarSecondaryElements[i].remove(); | ||
} | ||
|
||
const h1Elements = document.getElementsByTagName("h1"); | ||
for (let i = 0; i < h1Elements.length; i++) { | ||
h1Elements[i].remove(); | ||
} | ||
|
||
const footerElements = document.getElementsByClassName("md-footer__inner"); | ||
for (let i = 0; i < footerElements.length; i++) { | ||
footerElements[i].remove(); | ||
} | ||
|
||
const mainElements = document.getElementsByClassName("md-main"); | ||
if (mainElements.length > 0) { | ||
mainElements[0].style.backgroundImage = "url('stylesheets/background.png')"; | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
|
||
|
||
Wenn du Hilfe brauchst oder Ideen hast, schau auf unserem | ||
<a href="https://discord.gg/turniptales" rel="me"> | ||
<span class="twemoji discord"> | ||
{% include ".icons/fontawesome/brands/discord.svg" %} | ||
</span> | ||
<strong>Discord</strong> | ||
</a> | ||
vorbei! | ||
{% endblock %} |