MediaWiki:Common.js: Unterschied zwischen den Versionen
Tin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Tin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung Markierungen: Mobile Bearbeitung Mobile Web-Bearbeitung |
||
Zeile 6: | Zeile 6: | ||
// Create the top bar with a toggle button | // Create the top bar with a toggle button | ||
var topBarHtml = '<div class="top-bar" id="top-bar" style="background-color: #f8f9fa; padding: 10px; border-bottom: 1px solid #ccc;">' + | var topBarHtml = '<div class="top-bar" id="top-bar" style="background-color: #f8f9fa; padding: 10px; border-bottom: 1px solid #ccc;">' + | ||
'<a href="https://know.sevetin.net/s/2fa9e87c-2144-4938-b548-c743b858db9e"><b>Mitmachen</b></a>' + | '<a href="https://know.sevetin.net/s/2fa9e87c-2144-4938-b548-c743b858db9e"><b>Mitmachen</b></a>' + | ||
' | <a href="https://gurkipedia.de/wiki">Wiki</a>' + | ' | <a href="https://gurkipedia.de/wiki">Wiki</a>' + |
Aktuelle Version vom 20. Oktober 2024, 12:26 Uhr
/*
*/
$(document).ready(function() {
// Create the top bar with a toggle button
var topBarHtml = '<div class="top-bar" id="top-bar" style="background-color: #f8f9fa; padding: 10px; border-bottom: 1px solid #ccc;">' +
'<a href="https://know.sevetin.net/s/2fa9e87c-2144-4938-b548-c743b858db9e"><b>Mitmachen</b></a>' +
' | <a href="https://gurkipedia.de/wiki">Wiki</a>' +
' | <a href="https://forum.gurkistan.eu">Forum</a>' +
' | <a href="https://discord.gg/gurkistan-community-1077941897399631932">Community-Discord</a>' +
'</div>';
// Prepend the top bar to the body
$('body').prepend(topBarHtml);
});