From 918b24779d4d261ba650a4e5d62973e4b15526a3 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 1a97fa1e..d44162a1 100644 --- a/exampleSite/content/projects/_index.md +++ b/exampleSite/content/projects/_index.md @@ -13,3 +13,8 @@ weight: 20 * [Syntax-Highlighting in generiertem Inhalt über Markdown]({{% ref path="/projects/hibernate-maven-plugin/code-md" %}}) * [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..d9859641 --- /dev/null +++ b/exampleSite/content/projects/foo/a.md @@ -0,0 +1,5 @@ +--- +title: A +params: + visible: 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..21b75c8f --- /dev/null +++ b/exampleSite/content/projects/foo/c.md @@ -0,0 +1,6 @@ +--- +title: C +url: /c +params: + visible: 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..fe3133d8 --- /dev/null +++ b/exampleSite/content/projects/foo/d/_index.html @@ -0,0 +1,5 @@ +--- +title: D +params: + visible: 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