diff options
| author | Valentin <valentin@fricklerhandwerk.de> | 2025-12-16 22:36:00 +0100 |
|---|---|---|
| committer | Valentin <valentin@fricklerhandwerk.de> | 2025-12-20 17:44:07 +0100 |
| commit | 087800e228ac6239dbc287270232fa47344836ca (patch) | |
| tree | 27e305906d1804cfdb9251c65be845d786276c25 | |
| parent | 6c54d824d64a752e48d03e98477047629b392003 (diff) | |
Dokumentmetadaten auf allen Seiten angeglichen
Auch Schlüsselwort "Hamburg" hinzugefügt.
| -rw-r--r-- | www/html/datenschutz.html | 7 | ||||
| -rw-r--r-- | www/html/impressum.html | 7 | ||||
| -rw-r--r-- | www/html/index.html | 10 | ||||
| -rw-r--r-- | www/html/vergangene-termine.html | 9 | ||||
| -rw-r--r-- | www/index.nix | 9 |
5 files changed, 17 insertions, 25 deletions
diff --git a/www/html/datenschutz.html b/www/html/datenschutz.html index ce5e608..c1a55fc 100644 --- a/www/html/datenschutz.html +++ b/www/html/datenschutz.html @@ -1,12 +1,9 @@ <!DOCTYPE HTML > <html> <head> - <meta charset="utf-8" /> - <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <meta name="viewport" content="width=device-width"> - <title>@title@ – Datenschutz</title> + @head@ @stylesheet@ - <link rel="shortcut icon" type="image/x-icon" href="/img/Kraniche-dreh-klein.gif"> + <title>@title@ – Datenschutz</title> </head> <body> <header> diff --git a/www/html/impressum.html b/www/html/impressum.html index e7cd775..e07ddf0 100644 --- a/www/html/impressum.html +++ b/www/html/impressum.html @@ -1,12 +1,9 @@ <!DOCTYPE HTML > <html> <head> - <meta charset="utf-8" /> - <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <meta name="viewport" content="width=device-width"> - <title>@title@ – Impressum</title> + @head@ @stylesheet@ - <link rel="shortcut icon" type="image/x-icon" href="/img/Kraniche-dreh-klein.gif"> + <title>@title@ – Impressum</title> </head> <body> <header> diff --git a/www/html/index.html b/www/html/index.html index 70d5b43..885ae0f 100644 --- a/www/html/index.html +++ b/www/html/index.html @@ -1,15 +1,9 @@ <!DOCTYPE HTML > <html> <head> - <meta charset="utf-8" /> - <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <meta name="viewport" content="width=device-width"> - <meta name="description" content="Informationen zum Stadtteil Heimfeld und seinem Stadtteilbeirat"> - <meta name="keywords" content="Heimfeld, Stadtteil, Stadtteilbeirat, Beirat, Stadtteilfest, Treffpunkthaus"> - <title>@title@</title> - <link rel="shortcut icon" type="image/x-icon" href="/img/Kraniche-dreh-klein.gif"> + @head@ @stylesheet@ - <script async src="redirects.js"></script> + <title>@title@</title> </head> <body> <div class="table"> diff --git a/www/html/vergangene-termine.html b/www/html/vergangene-termine.html index 2e31b72..f39defb 100644 --- a/www/html/vergangene-termine.html +++ b/www/html/vergangene-termine.html @@ -1,14 +1,9 @@ <!DOCTYPE HTML > <html> <head> - <meta charset="utf-8" /> - <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <meta name="viewport" content="width=device-width"> - <meta name="description" content="Informationen zum Stadtteil Heimfeld und seinem Stadtteilbeirat"> - <meta name="keywords" content="Heimfeld, Stadtteil, Stadtteilbeirat, Beirat, Stadtteilfest, Treffpunkthaus"> - <title>@title@ – Vergangene Termine</title> - <link rel="shortcut icon" type="image/x-icon" href="/img/Kraniche-dreh-klein.gif"> + @head@ @stylesheet@ + <title>@title@ – Vergangene Termine</title> </head> <body> <header> diff --git a/www/index.nix b/www/index.nix index e2e6528..607a005 100644 --- a/www/index.nix +++ b/www/index.nix @@ -10,6 +10,15 @@ replacements = { "@title@" = config.title; "@stylesheet@" = ''<link rel="stylesheet" type="text/css" href="style.css">''; + "@head@" = '' + <meta charset="utf-8" /> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <meta name="viewport" content="width=device-width"> + <meta name="description" content="Informationen zum Stadtteil Heimfeld und seinem Stadtteilbeirat"> + <meta name="keywords" content="Heimfeld, Stadtteil, Hamburg, Stadtteilbeirat, Beirat, Stadtteilfest, Treffpunkthaus"> + <link rel="shortcut icon" type="image/x-icon" href="/img/Kraniche-dreh-klein.gif"> + <script async src="redirects.js"></script> + ''; }; replace = file: with lib; replaceStrings (attrNames replacements) (attrValues replacements) file; in |
