From c895df0c65b477fba45f18f16aaa743bc6d9294a Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Mon, 15 Jun 2026 18:41:56 +0000 Subject: [PATCH] Remove Hugo-specific outputs/layout fields from project content MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit outputs: [html] and layout: article are Hugo artifacts carried over from the migration — Astro ignores them. Removed from all 12 content files and from the Zod schema in content.config.ts. Co-Authored-By: Claude Sonnet 4.6 --- src/content.config.ts | 2 -- src/content/projects/hibernate-maven-plugin/2.1.1/_index.html | 3 --- .../projects/hibernate-maven-plugin/2.1.1/configuration.html | 3 --- .../hibernate-maven-plugin/2.1.1/project-info/_index.html | 3 --- .../hibernate-maven-plugin/2.1.1/project-reports/_index.html | 3 --- .../2.1.1/project-reports/plugin-info/_index.html | 3 --- .../2.1.1/project-reports/plugin-info/create-mojo.html | 3 --- .../projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html | 3 --- .../hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html | 3 --- .../2.1.2-SNAPSHOT/project-info/_index.html | 3 --- .../2.1.2-SNAPSHOT/project-reports/_index.html | 3 --- .../2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html | 3 --- .../project-reports/plugin-info/create-mojo.html | 3 --- 13 files changed, 38 deletions(-) diff --git a/src/content.config.ts b/src/content.config.ts index 88f2f003..079cd458 100644 --- a/src/content.config.ts +++ b/src/content.config.ts @@ -27,8 +27,6 @@ const projectPageSchema = z.object({ title: z.string(), weight: z.number().default(999), url: z.string(), - layout: z.string().optional(), - outputs: z.array(z.string()).optional(), params: z.object({ current: z.boolean(), canonical: z.string().optional(), diff --git a/src/content/projects/hibernate-maven-plugin/2.1.1/_index.html b/src/content/projects/hibernate-maven-plugin/2.1.1/_index.html index 6c3ce3b5..6cedd36a 100644 --- a/src/content/projects/hibernate-maven-plugin/2.1.1/_index.html +++ b/src/content/projects/hibernate-maven-plugin/2.1.1/_index.html @@ -1,10 +1,7 @@ --- title: Hibernate Maven Plugin weight: 0 -outputs: - - html url: /hibernate-maven-plugin/ -layout: article params: current: true --- diff --git a/src/content/projects/hibernate-maven-plugin/2.1.1/configuration.html b/src/content/projects/hibernate-maven-plugin/2.1.1/configuration.html index a9f1a36e..7a568992 100644 --- a/src/content/projects/hibernate-maven-plugin/2.1.1/configuration.html +++ b/src/content/projects/hibernate-maven-plugin/2.1.1/configuration.html @@ -1,10 +1,7 @@ --- title: Configuration Examples weight: 20 -outputs: - - html url: /hibernate-maven-plugin/configuration.html -layout: article params: current: true --- diff --git a/src/content/projects/hibernate-maven-plugin/2.1.1/project-info/_index.html b/src/content/projects/hibernate-maven-plugin/2.1.1/project-info/_index.html index a0f906aa..e1ae6bd0 100644 --- a/src/content/projects/hibernate-maven-plugin/2.1.1/project-info/_index.html +++ b/src/content/projects/hibernate-maven-plugin/2.1.1/project-info/_index.html @@ -1,10 +1,7 @@ --- title: Project Information weight: 1 -outputs: - - html url: /hibernate-maven-plugin/project-info.html -layout: article params: current: true --- diff --git a/src/content/projects/hibernate-maven-plugin/2.1.1/project-reports/_index.html b/src/content/projects/hibernate-maven-plugin/2.1.1/project-reports/_index.html index cf617359..df34f594 100644 --- a/src/content/projects/hibernate-maven-plugin/2.1.1/project-reports/_index.html +++ b/src/content/projects/hibernate-maven-plugin/2.1.1/project-reports/_index.html @@ -1,10 +1,7 @@ --- title: Project Reports weight: 12 -outputs: - - html url: /hibernate-maven-plugin/project-reports.html -layout: article params: current: true --- diff --git a/src/content/projects/hibernate-maven-plugin/2.1.1/project-reports/plugin-info/_index.html b/src/content/projects/hibernate-maven-plugin/2.1.1/project-reports/plugin-info/_index.html index a0d81047..fafb31e0 100644 --- a/src/content/projects/hibernate-maven-plugin/2.1.1/project-reports/plugin-info/_index.html +++ b/src/content/projects/hibernate-maven-plugin/2.1.1/project-reports/plugin-info/_index.html @@ -1,10 +1,7 @@ --- title: Plugin Documentation weight: 19 -outputs: - - html url: /hibernate-maven-plugin/plugin-info.html -layout: article params: current: true --- diff --git a/src/content/projects/hibernate-maven-plugin/2.1.1/project-reports/plugin-info/create-mojo.html b/src/content/projects/hibernate-maven-plugin/2.1.1/project-reports/plugin-info/create-mojo.html index d241a922..1eed81e2 100644 --- a/src/content/projects/hibernate-maven-plugin/2.1.1/project-reports/plugin-info/create-mojo.html +++ b/src/content/projects/hibernate-maven-plugin/2.1.1/project-reports/plugin-info/create-mojo.html @@ -1,10 +1,7 @@ --- title: "Goal — hibernate:create" weight: 21 -outputs: - - html url: /hibernate-maven-plugin/create-mojo.html -layout: article params: current: true --- diff --git a/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html b/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html index 3c4f9711..ceda4ab2 100644 --- a/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html +++ b/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html @@ -1,10 +1,7 @@ --- title: Hibernate Maven Plugin weight: 0 -outputs: - - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/ -layout: article params: current: false canonical: /hibernate-maven-plugin/ diff --git a/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html b/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html index 0664763d..33a20e76 100644 --- a/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html +++ b/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html @@ -1,10 +1,7 @@ --- title: Configuration Examples weight: 20 -outputs: - - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html -layout: article params: current: false canonical: /hibernate-maven-plugin/configuration.html diff --git a/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/_index.html b/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/_index.html index fd01d861..6108dbc1 100644 --- a/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/_index.html +++ b/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/_index.html @@ -1,10 +1,7 @@ --- title: Project Information weight: 1 -outputs: - - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info.html -layout: article params: current: false canonical: /hibernate-maven-plugin/project-info.html diff --git a/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/_index.html b/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/_index.html index e45e483e..cd4a0171 100644 --- a/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/_index.html +++ b/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/_index.html @@ -1,10 +1,7 @@ --- title: Project Reports weight: 12 -outputs: - - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports.html -layout: article params: current: false canonical: /hibernate-maven-plugin/project-reports.html diff --git a/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html b/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html index 7ec2fe33..45536099 100644 --- a/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html +++ b/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html @@ -1,10 +1,7 @@ --- title: Plugin Documentation weight: 19 -outputs: - - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugin-info.html -layout: article params: current: false canonical: /hibernate-maven-plugin/plugin-info.html diff --git a/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/create-mojo.html b/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/create-mojo.html index 8d4bd7e7..1291e442 100644 --- a/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/create-mojo.html +++ b/src/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/create-mojo.html @@ -1,10 +1,7 @@ --- title: "Goal — hibernate:create" weight: 21 -outputs: - - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/create-mojo.html -layout: article params: current: false canonical: /hibernate-maven-plugin/create-mojo.html -- 2.39.5