mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
20 lines
788 B
XML
20 lines
788 B
XML
{{- $_ := .Content -}}
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>Docker Docs - Security Announcements</title>
|
|
<description>Docker security announcements and updates</description>
|
|
<link>{{ .Permalink }}</link>
|
|
<generator>Hugo -- gohugo.io</generator>
|
|
<language>{{ .Site.LanguageCode | default "en" }}</language>
|
|
<lastBuildDate>{{ now.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>
|
|
<atom:link href="{{ .Permalink }}index.xml" rel="self" type="application/rss+xml" />
|
|
{{- range (index .Fragments.Headings 0).Headings }}
|
|
<item>
|
|
<title>{{ .Title }}</title>
|
|
<link>{{ $.Permalink }}#{{ .ID }}</link>
|
|
<guid>security-{{ .ID }}</guid>
|
|
</item>
|
|
{{- end }}
|
|
</channel>
|
|
</rss>
|