git: b2cad1c95a - main - Security RSS feed: Remove extra slash
Sergio Carlavilla Delgado <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.doc |
|---|---|
| Message-ID | <[email protected]> |
The branch main has been updated by carlavilla: URL: https://cgit.FreeBSD.org/doc/commit/?id=b2cad1c95aa0da3ab9a307ed0432dd642ff8bc92 commit b2cad1c95aa0da3ab9a307ed0432dd642ff8bc92 Author: Sergio Carlavilla Delgado <[email protected]> AuthorDate: 2023-07-22 09:30:49 +0000 Commit: Sergio Carlavilla Delgado <[email protected]> CommitDate: 2023-07-22 09:30:49 +0000 Security RSS feed: Remove extra slash PR: 272132 Submitted by: Mark McBride <[email protected]> --- 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 }}