From 626e467553004610fc0a99c1261b398d544590e9 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Fri, 26 Jun 2026 17:07:30 +0200 Subject: feat: scaffold slackware projects section (EN/IT) with sample project --- content/en/slackware/_index.md | 8 ++++++++ content/en/slackware/sample-project/index.md | 19 +++++++++++++++++++ content/it/slackware/_index.md | 8 ++++++++ content/it/slackware/sample-project/index.md | 19 +++++++++++++++++++ 4 files changed, 54 insertions(+) create mode 100644 content/en/slackware/_index.md create mode 100644 content/en/slackware/sample-project/index.md create mode 100644 content/it/slackware/_index.md create mode 100644 content/it/slackware/sample-project/index.md (limited to 'content') diff --git a/content/en/slackware/_index.md b/content/en/slackware/_index.md new file mode 100644 index 0000000..cc5ecd8 --- /dev/null +++ b/content/en/slackware/_index.md @@ -0,0 +1,8 @@ ++++ +title = "Slackware" +date = 2026-06-26T00:00:00Z ++++ + +I build and run everything on **Slackware**. This page collects the projects +I maintain around it, and the reasons I keep choosing it: simplicity, +transparency, and staying out of my way. diff --git a/content/en/slackware/sample-project/index.md b/content/en/slackware/sample-project/index.md new file mode 100644 index 0000000..14d8486 --- /dev/null +++ b/content/en/slackware/sample-project/index.md @@ -0,0 +1,19 @@ ++++ +title = "Sample Project" +tagline = "A placeholder project to validate the section layout." +status = "active" +repo_url = "https://git.danix.xyz/sample-project" +tags = ["bash", "slackbuild", "python"] ++++ + +## What it is + +Freeform body content for the sample project. + +## How it works + +Details here. + +## Rationale + +Why it exists. diff --git a/content/it/slackware/_index.md b/content/it/slackware/_index.md new file mode 100644 index 0000000..8f669a7 --- /dev/null +++ b/content/it/slackware/_index.md @@ -0,0 +1,8 @@ ++++ +title = "Slackware" +date = 2026-06-26T00:00:00Z ++++ + +Costruisco e uso tutto su **Slackware**. Questa pagina raccoglie i progetti +che mantengo intorno ad essa, e i motivi per cui continuo a sceglierla: +semplicità, trasparenza, e non mettersi in mezzo. diff --git a/content/it/slackware/sample-project/index.md b/content/it/slackware/sample-project/index.md new file mode 100644 index 0000000..5695aa0 --- /dev/null +++ b/content/it/slackware/sample-project/index.md @@ -0,0 +1,19 @@ ++++ +title = "Progetto di Esempio" +tagline = "Un progetto segnaposto per validare il layout della sezione." +status = "active" +repo_url = "https://git.danix.xyz/sample-project" +tags = ["bash", "slackbuild", "python"] ++++ + +## Cos'è + +Contenuto libero per il progetto di esempio. + +## Come funziona + +Dettagli qui. + +## Motivazione + +Perché esiste. -- cgit v1.2.3 From 1cdf6d6bff9ef48904c6b48ced274da7017307a8 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Fri, 26 Jun 2026 17:10:03 +0200 Subject: feat: nest Packages under new Slackware menu parent (both languages) --- content/en/slackware/sample-project/index.md | 4 ++++ content/it/slackware/sample-project/index.md | 4 ++++ hugo.toml | 18 ++++++++++++++++-- 3 files changed, 24 insertions(+), 2 deletions(-) (limited to 'content') diff --git a/content/en/slackware/sample-project/index.md b/content/en/slackware/sample-project/index.md index 14d8486..ddaea8e 100644 --- a/content/en/slackware/sample-project/index.md +++ b/content/en/slackware/sample-project/index.md @@ -4,6 +4,10 @@ tagline = "A placeholder project to validate the section layout." status = "active" repo_url = "https://git.danix.xyz/sample-project" tags = ["bash", "slackbuild", "python"] + +[menus.main] + parent = "slackware" + weight = 10 +++ ## What it is diff --git a/content/it/slackware/sample-project/index.md b/content/it/slackware/sample-project/index.md index 5695aa0..975b28e 100644 --- a/content/it/slackware/sample-project/index.md +++ b/content/it/slackware/sample-project/index.md @@ -4,6 +4,10 @@ tagline = "Un progetto segnaposto per validare il layout della sezione." status = "active" repo_url = "https://git.danix.xyz/sample-project" tags = ["bash", "slackbuild", "python"] + +[menus.main] + parent = "slackware" + weight = 10 +++ ## Cos'è diff --git a/hugo.toml b/hugo.toml index 81d1998..fc3a89e 100644 --- a/hugo.toml +++ b/hugo.toml @@ -82,11 +82,18 @@ enableEmoji = true [languages.it.menus.main.params] external = true + [[languages.it.menus.main]] + identifier = "slackware" + pageRef = "/slackware" + name = "slackware" + weight = 5 + [[languages.it.menus.main]] identifier = "repository" pageRef = "/repository" name = "repo" - weight = 5 + parent = "slackware" + weight = 1 [[languages.it.menus.main]] identifier = "legal" @@ -129,11 +136,18 @@ enableEmoji = true [languages.en.menus.main.params] external = true + [[languages.en.menus.main]] + identifier = "slackware" + pageRef = "/slackware" + name = "slackware" + weight = 5 + [[languages.en.menus.main]] identifier = "repository" pageRef = "/repository" name = "repo" - weight = 5 + parent = "slackware" + weight = 1 [[languages.en.menus.main]] identifier = "legal" -- cgit v1.2.3 From 775bf8552233258e4e440ceab71ccc3da7d6b8b8 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Fri, 26 Jun 2026 18:12:49 +0200 Subject: chore: remove sample-project test scaffolding The slackware section ships empty; real projects get added later. Submenu now shows only Packages. --- content/en/slackware/sample-project/index.md | 23 ----------------------- content/it/slackware/sample-project/index.md | 23 ----------------------- 2 files changed, 46 deletions(-) delete mode 100644 content/en/slackware/sample-project/index.md delete mode 100644 content/it/slackware/sample-project/index.md (limited to 'content') diff --git a/content/en/slackware/sample-project/index.md b/content/en/slackware/sample-project/index.md deleted file mode 100644 index ddaea8e..0000000 --- a/content/en/slackware/sample-project/index.md +++ /dev/null @@ -1,23 +0,0 @@ -+++ -title = "Sample Project" -tagline = "A placeholder project to validate the section layout." -status = "active" -repo_url = "https://git.danix.xyz/sample-project" -tags = ["bash", "slackbuild", "python"] - -[menus.main] - parent = "slackware" - weight = 10 -+++ - -## What it is - -Freeform body content for the sample project. - -## How it works - -Details here. - -## Rationale - -Why it exists. diff --git a/content/it/slackware/sample-project/index.md b/content/it/slackware/sample-project/index.md deleted file mode 100644 index 975b28e..0000000 --- a/content/it/slackware/sample-project/index.md +++ /dev/null @@ -1,23 +0,0 @@ -+++ -title = "Progetto di Esempio" -tagline = "Un progetto segnaposto per validare il layout della sezione." -status = "active" -repo_url = "https://git.danix.xyz/sample-project" -tags = ["bash", "slackbuild", "python"] - -[menus.main] - parent = "slackware" - weight = 10 -+++ - -## Cos'è - -Contenuto libero per il progetto di esempio. - -## Come funziona - -Dettagli qui. - -## Motivazione - -Perché esiste. -- cgit v1.2.3