-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
43 lines (34 loc) · 1.33 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Funktion zum Erstellen der Kopfzeile
function createHeader() {
const headerDiv = document.createElement('div');
headerDiv.classList.add('header'); // Füge eine CSS-Klasse hinzu, um die Kopfzeile zu gestalten
// Array mit Links und ihren Texten
const links = [
{ text: 'Über mich', url: 'About/index.html' },
{ text: 'Projekte', url: 'Projects/index.html' },
{ text: 'Weihnachtswebseite', url: 'Weihnachtswebseite/Index.html' },
{ text: 'Archivierte Seiten', url: 'Archiv/index.html' }
];
// Erstelle Links und füge sie zur Kopfzeile hinzu
links.forEach(linkInfo => {
const link = document.createElement('a');
link.href = linkInfo.url;
link.classList.add('button'); // Füge eine CSS-Klasse für den Button hinzu
link.textContent = linkInfo.text;
headerDiv.appendChild(link);
});
// Füge das Header-Div zum Dokument hinzu
const headerContainer = document.getElementById('header');
headerContainer.appendChild(headerDiv);
}
// Rufe die Funktion auf, um die Kopfzeile zu erstellen
createHeader();
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZN5SJZ79ZD');
var n = localStorage.getItem('on_load_counter');
if (n === null) {
n = 0;
}
n++;