[gimp-web-devel/hugo] Fix homepage rendering RSS vs HTML



commit 8449d00eeb8e2eea21ccb5de18811506ae038d5a
Author: Pat David <patdavid gmail com>
Date:   Sat Aug 6 11:49:04 2022 -0500

    Fix homepage rendering RSS vs HTML
    
    In all of the markdown files under /homepage/ the frontmatter
    had a parameter "url = ...".
    
    In hugo, that frontmatter defines a path to the page that should
    be output _relative to the project root_.  So the
    /homepage/_index.md file with frontmatter `url = 'index.html'`
    was trying to overwrite the /index.html file.
    (instead of what I assume the intent was: `/homepage/index.html`.
    
    I tend not to use the 'url' parameter unless really needed.

 content/_index.md                    | 1 -
 content/homepage/_index.md           | 1 -
 content/homepage/about.md            | 1 -
 content/homepage/bugs.md             | 1 -
 content/homepage/changelog.md        | 1 -
 content/homepage/cvs.md              | 1 -
 content/homepage/faq.md              | 1 -
 content/homepage/git.md              | 1 -
 content/homepage/lists.md            | 1 -
 content/homepage/plug-in-template.md | 1 -
 content/homepage/screenshots.md      | 1 -
 content/homepage/standards.md        | 1 -
 12 files changed, 12 deletions(-)
---
diff --git a/content/_index.md b/content/_index.md
index 12ae0d2..c7cc115 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -2,7 +2,6 @@
 title = "GIMP Development"
 date = "2022-07-19"
 description = "Online Resources for GIMP Developers"
-url = "index.html"
 author = "The GIMP Development Team"
 +++
 
diff --git a/content/homepage/_index.md b/content/homepage/_index.md
index 12ae0d2..c7cc115 100644
--- a/content/homepage/_index.md
+++ b/content/homepage/_index.md
@@ -2,7 +2,6 @@
 title = "GIMP Development"
 date = "2022-07-19"
 description = "Online Resources for GIMP Developers"
-url = "index.html"
 author = "The GIMP Development Team"
 +++
 
diff --git a/content/homepage/about.md b/content/homepage/about.md
index 6da9a09..a69ff2d 100644
--- a/content/homepage/about.md
+++ b/content/homepage/about.md
@@ -3,7 +3,6 @@ title = "About this Site"
 description = "About this Site."
 date = "2022-07-19"
 author = "The GIMP Development Team"
-url = "about.html"
 +++
 
 The look of this site was borrowed from
diff --git a/content/homepage/bugs.md b/content/homepage/bugs.md
index c7f8d20..64ecd11 100644
--- a/content/homepage/bugs.md
+++ b/content/homepage/bugs.md
@@ -3,7 +3,6 @@ title = "Bug Tracking System"
 description = "Bugs, bugs, bugs"
 date = "2022-07-19"
 abbrev = "Gitlab"
-url = "bugs.html"
 +++
 
 The GIMP project uses Gitlab's
diff --git a/content/homepage/changelog.md b/content/homepage/changelog.md
index 4426537..670bc37 100644
--- a/content/homepage/changelog.md
+++ b/content/homepage/changelog.md
@@ -3,7 +3,6 @@ title = "GIMP ChangeLog"
 date = "2022-07-20"
 abbrev = "ChangeLog"
 description = "Keeping an eye on the development."
-url = "changelog.html"
 +++
 
 The [GIT repository](https://gitlab.gnome.org/GNOME/gimp/commits/master)
diff --git a/content/homepage/cvs.md b/content/homepage/cvs.md
index fb34569..541baa3 100644
--- a/content/homepage/cvs.md
+++ b/content/homepage/cvs.md
@@ -2,7 +2,6 @@
 title = "CVS"
 date = "2022-07-19"
 description = "CVS migrated to Subversion."
-url = "cvs.html"
 +++
 
 GIMP doesn't use CVS any longer. The source code repository has been
diff --git a/content/homepage/faq.md b/content/homepage/faq.md
index 5ea8f50..d425e3f 100644
--- a/content/homepage/faq.md
+++ b/content/homepage/faq.md
@@ -3,7 +3,6 @@ title = "Frequently Asked Questions"
 date = "2022-07-20"
 abbrev = "Developer FAQ"
 description = "New to GIMP Development?"
-url = "faq.html"
 +++
 
 Below you will find a collection of frequently asked questions
diff --git a/content/homepage/git.md b/content/homepage/git.md
index 7a8834e..20db728 100644
--- a/content/homepage/git.md
+++ b/content/homepage/git.md
@@ -3,7 +3,6 @@ title = "Git"
 date = "2022-07-20"
 abbrev = "Git"
 description = "Living on the bleeding edge"
-url = "git.html"
 +++
 
 The GIMP source code lives in the `gimp` repository on the
diff --git a/content/homepage/lists.md b/content/homepage/lists.md
index 81f8687..e639c45 100644
--- a/content/homepage/lists.md
+++ b/content/homepage/lists.md
@@ -2,7 +2,6 @@
 title = "Mailing Lists"
 description = "The finest spam in town"
 date = "2022-07-20"
-url = "lists.html"
 +++
 
 There are several mailing-lists related to GIMP and
diff --git a/content/homepage/plug-in-template.md b/content/homepage/plug-in-template.md
index d2afcc0..9096690 100644
--- a/content/homepage/plug-in-template.md
+++ b/content/homepage/plug-in-template.md
@@ -3,7 +3,6 @@ title = "GIMP Plug-In Template"
 abbrev = "Plug-In Template"
 description = "Don't start from scratch"
 date = "2022-07-20"
-url = "plug-in-template.html"
 +++
 
 The GIMP Plug-In Template is an empty GIMP Plug-In that does
diff --git a/content/homepage/screenshots.md b/content/homepage/screenshots.md
index 533fc74..c45c90f 100644
--- a/content/homepage/screenshots.md
+++ b/content/homepage/screenshots.md
@@ -1,7 +1,6 @@
 +++
 title = "Screenshots"
 description = "What everyone is after..."
-url = "screenshots.html"
 +++
 
 Here are a few screenshots of the development version. More should
diff --git a/content/homepage/standards.md b/content/homepage/standards.md
index 530eebe..64b6fd0 100644
--- a/content/homepage/standards.md
+++ b/content/homepage/standards.md
@@ -3,7 +3,6 @@ title = "GIMP and Standards"
 date = "2022-07-20"
 abbrev = "Standards"
 description = "Standards GIMP conforms to"
-url = "standards.html"
 +++
 
 GIMP is supposed to integrate well into your workflow. Thus is


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]