git: b2cad1c95a - main - Security RSS feed: Remove extra slash
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 22 Jul 2023 09:31:32 UTC
The branch main has been updated by carlavilla: URL: https://cgit.FreeBSD.org/doc/commit/?id=b2cad1c95aa0da3ab9a307ed0432dd642ff8bc92 commit b2cad1c95aa0da3ab9a307ed0432dd642ff8bc92 Author: Sergio Carlavilla Delgado <carlavilla@FreeBSD.org> AuthorDate: 2023-07-22 09:30:49 +0000 Commit: Sergio Carlavilla Delgado <carlavilla@FreeBSD.org> CommitDate: 2023-07-22 09:30:49 +0000 Security RSS feed: Remove extra slash PR: 272132 Submitted by: Mark McBride <mark@markmcb.com> --- website/themes/beastie/layouts/security/security.rss.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/themes/beastie/layouts/security/security.rss.xml b/website/themes/beastie/layouts/security/security.rss.xml index 8ca772180f..37dd78fadc 100644 --- a/website/themes/beastie/layouts/security/security.rss.xml +++ b/website/themes/beastie/layouts/security/security.rss.xml @@ -32,8 +32,8 @@ {{ if lt $advisoriesCounter 10 }} <item> <title>{{ .name }}</title> - <link>{{ absLangURL ($.Site.BaseURL) }}/security/advisories/{{ .name }}.asc</link> - <guid>{{ absLangURL ($.Site.BaseURL) }}/security/advisories/{{ .name }}.asc</guid> + <link>{{ absLangURL ($.Site.BaseURL) }}security/advisories/{{ .name }}.asc</link> + <guid>{{ absLangURL ($.Site.BaseURL) }}security/advisories/{{ .name }}.asc</guid> <pubDate>{{ dateFormat "02 Jan 06 15:04 UTC" .date }}</pubDate> </item> {{ $advisoriesCounter = add $advisoriesCounter 1 }}