From b17903dd38ecf9ec38217fe9010d38d0d8f5c82c Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Wed, 22 Apr 2026 14:22:43 +0200 Subject: [PATCH] =?utf8?q?Beispiel-Content=20unter=20`/projects/`,=20mit?= =?utf8?q?=20einer=20"unn=C3=B6tigen"=20Zwischenebene?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- exampleSite/content/projects/_index.md | 5 +++++ exampleSite/content/projects/f.html | 3 +++ exampleSite/content/projects/foo/a.md | 5 +++++ exampleSite/content/projects/foo/b.md | 3 +++ exampleSite/content/projects/foo/c.md | 6 ++++++ exampleSite/content/projects/foo/d/_index.html | 5 +++++ exampleSite/content/projects/foo/e/_index.html | 3 +++ 7 files changed, 30 insertions(+) create mode 100644 exampleSite/content/projects/f.html create mode 100644 exampleSite/content/projects/foo/a.md create mode 100644 exampleSite/content/projects/foo/b.md create mode 100644 exampleSite/content/projects/foo/c.md create mode 100644 exampleSite/content/projects/foo/d/_index.html create mode 100644 exampleSite/content/projects/foo/e/_index.html diff --git a/exampleSite/content/projects/_index.md b/exampleSite/content/projects/_index.md index 61c44e67..f65db329 100644 --- a/exampleSite/content/projects/_index.md +++ b/exampleSite/content/projects/_index.md @@ -11,3 +11,8 @@ weight: 20 * [Syntax-Highlighting in Markdown]({{% ref path="/projects/code" %}}) * [Templates]({{% ref path="/templates" %}}) * [Templates for Error-Pages]({{% ref path="/error" %}}) + +## Beispiele für nicht verlinkte Inhalte +* [B]({{% ref path="/projects/foo/b" %}}) +* [E]({{% ref path="/projects/foo/e" %}}) +* [F]({{% ref path="/projects/f" %}}) diff --git a/exampleSite/content/projects/f.html b/exampleSite/content/projects/f.html new file mode 100644 index 00000000..2018274c --- /dev/null +++ b/exampleSite/content/projects/f.html @@ -0,0 +1,3 @@ +--- +title: F +--- diff --git a/exampleSite/content/projects/foo/a.md b/exampleSite/content/projects/foo/a.md new file mode 100644 index 00000000..5da8a67a --- /dev/null +++ b/exampleSite/content/projects/foo/a.md @@ -0,0 +1,5 @@ +--- +title: A +params: + current: true +--- diff --git a/exampleSite/content/projects/foo/b.md b/exampleSite/content/projects/foo/b.md new file mode 100644 index 00000000..ee468b83 --- /dev/null +++ b/exampleSite/content/projects/foo/b.md @@ -0,0 +1,3 @@ +--- +title: B +--- diff --git a/exampleSite/content/projects/foo/c.md b/exampleSite/content/projects/foo/c.md new file mode 100644 index 00000000..6538b546 --- /dev/null +++ b/exampleSite/content/projects/foo/c.md @@ -0,0 +1,6 @@ +--- +title: C +url: /c +params: + current: true +--- diff --git a/exampleSite/content/projects/foo/d/_index.html b/exampleSite/content/projects/foo/d/_index.html new file mode 100644 index 00000000..0fd449df --- /dev/null +++ b/exampleSite/content/projects/foo/d/_index.html @@ -0,0 +1,5 @@ +--- +title: D +params: + current: true +--- diff --git a/exampleSite/content/projects/foo/e/_index.html b/exampleSite/content/projects/foo/e/_index.html new file mode 100644 index 00000000..4cc8501b --- /dev/null +++ b/exampleSite/content/projects/foo/e/_index.html @@ -0,0 +1,3 @@ +--- +title: E +--- -- 2.39.5