created a 'music' page
Deploy static site / deploy (push) Successful in 23s

This commit is contained in:
2026-04-24 00:54:42 +02:00
parent c1ed7fe998
commit eaece534d5
2 changed files with 33 additions and 2 deletions
+7 -1
View File
@@ -1,6 +1,6 @@
index:
en:
page-title: "Personal Website"
page-title: "Marco's Homepage"
introduction-heading: "Hi, I'm Marco"
introduction-subheading: "and this is my website"
about-paragraph: "I'm a software developer from Germany.<br>
@@ -33,3 +33,9 @@ index:
und meine HTML und CSS Fähigkeiten aufzufrischen schadet auch nicht.<br>
Wird diese Website einen Schönheitswettbewerb gewinnen? Nein.<br>
Doch wenigstens ist sie handgemacht."
music:
en:
music-heading: "my taste in music"
de:
music-heading: "mein Musikgeschmack"
+25
View File
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="{{lang}}">
<head>
<meta name="robots" content="noindex nofollow">
<link rel="stylesheet" href="../styles.css">
<title>{{page-title}}</title>
</head>
<body>
<div id="language">
{{language-switcher}}
</div>
<div id="navbar">
<a href="index.html">home</a>
<a href="music.html">music</a>
</div>
<header id="about">
<h1>{{music-heading}}</h1>
</header>
</body>
</html>