-
Notifications
You must be signed in to change notification settings - Fork 7
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
46 changed files
with
5,009 additions
and
713 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
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
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,9 +1,8 @@ | ||
module.exports = function(eleventyConfig) { | ||
eleventyConfig.addPassthroughCopy('assets'); | ||
module.exports = function (eleventyConfig) { | ||
eleventyConfig.addPassthroughCopy('assets') | ||
return { | ||
dir: { | ||
output: "../src" | ||
} | ||
}; | ||
}; | ||
|
||
output: '../src', | ||
}, | ||
} | ||
} |
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 |
---|---|---|
@@ -1,2 +1,7 @@ | ||
[ { "url": "/", "label": "Startseite" }, { "url": "/ueber-uns/", "label": "Über uns" }, { "url": "/impressum/", "label": "Impressum" }, { "url": "/blog/post1/", "label": "Blog Post 1" }, { "url": "/blog/post2/", "label": "Blog Post 2" }] | ||
|
||
[ | ||
{ "url": "/", "label": "Startseite" }, | ||
{ "url": "/ueber-uns/", "label": "Über uns" }, | ||
{ "url": "/impressum/", "label": "Impressum" }, | ||
{ "url": "/blog/post1/", "label": "Blog Post 1" }, | ||
{ "url": "/blog/post2/", "label": "Blog Post 2" } | ||
] |
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,20 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="de"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Blog Post 1</title> | ||
</head> | ||
<body> | ||
<nav> | ||
<ul> | ||
</ul> | ||
</nav> | ||
<main> | ||
<p>Dies ist der Inhalt von Blog Post 1. Hier erfahren Sie mehr über interessante Themen und Neuigkeiten.</p> | ||
|
||
</main> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Blog Post 1</title> | ||
</head> | ||
<body> | ||
<nav> | ||
<ul></ul> | ||
</nav> | ||
<main> | ||
<p> | ||
Dies ist der Inhalt von Blog Post 1. Hier erfahren Sie mehr über | ||
interessante Themen und Neuigkeiten. | ||
</p> | ||
</main> | ||
</body> | ||
</html> | ||
|
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,20 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="de"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Blog Post 2</title> | ||
</head> | ||
<body> | ||
<nav> | ||
<ul> | ||
</ul> | ||
</nav> | ||
<main> | ||
<p>Dies ist der Inhalt von Blog Post 2. Bleiben Sie auf dem Laufenden und entdecken Sie weitere spannende Themen.</p> | ||
|
||
</main> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Blog Post 2</title> | ||
</head> | ||
<body> | ||
<nav> | ||
<ul></ul> | ||
</nav> | ||
<main> | ||
<p> | ||
Dies ist der Inhalt von Blog Post 2. Bleiben Sie auf dem Laufenden und | ||
entdecken Sie weitere spannende Themen. | ||
</p> | ||
</main> | ||
</body> | ||
</html> | ||
|
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,21 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="de"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Impressum</title> | ||
</head> | ||
<body> | ||
<nav> | ||
<ul> | ||
|
||
</ul> | ||
</nav> | ||
<main> | ||
<h1>Impressum</h1> | ||
<p>Beispieltext für das Impressum.</p> | ||
|
||
</main> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Impressum</title> | ||
</head> | ||
<body> | ||
<nav> | ||
<ul></ul> | ||
</nav> | ||
<main> | ||
<h1>Impressum</h1> | ||
<p>Beispieltext für das Impressum.</p> | ||
</main> | ||
</body> | ||
</html> | ||
|
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,23 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="de"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Startseite</title> | ||
</head> | ||
<body> | ||
<nav> | ||
<ul> | ||
|
||
</ul> | ||
</nav> | ||
<main> | ||
<h1>Willkommen auf der Startseite</h1> | ||
<p>Hier finden Sie Informationen über unser Unternehmen und unseren Blog.</p> | ||
<img src="/assets/kill-bill-roland-golla.jpg" alt="Kill Bugs Fakebild mit Roland Golla im Kill Bill Look" /> | ||
|
||
|
||
</main> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Startseite</title> | ||
</head> | ||
<body> | ||
<nav> | ||
<ul></ul> | ||
</nav> | ||
<main> | ||
<h1>Willkommen auf der Startseite</h1> | ||
<p> | ||
Hier finden Sie Informationen über unser Unternehmen und unseren Blog. | ||
</p> | ||
<img | ||
src="/assets/kill-bill-roland-golla.jpg" | ||
alt="Kill Bugs Fakebild mit Roland Golla im Kill Bill Look" | ||
/> | ||
</main> | ||
</body> | ||
</html> | ||
|
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,21 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="de"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Über uns</title> | ||
</head> | ||
<body> | ||
<nav> | ||
<ul> | ||
</ul> | ||
</nav> | ||
<main> | ||
<h1>Über uns</h1> | ||
<p>Wir sind ein Beispielunternehmen, das sich auf die Erstellung hochwertiger Inhalte spezialisiert hat.</p> | ||
|
||
</main> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Über uns</title> | ||
</head> | ||
<body> | ||
<nav> | ||
<ul></ul> | ||
</nav> | ||
<main> | ||
<h1>Über uns</h1> | ||
<p> | ||
Wir sind ein Beispielunternehmen, das sich auf die Erstellung | ||
hochwertiger Inhalte spezialisiert hat. | ||
</p> | ||
</main> | ||
</body> | ||
</html> | ||
|
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.