-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrss.xml
More file actions
17 lines (17 loc) · 999 Bytes
/
rss.xml
File metadata and controls
17 lines (17 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>" | safeHTML }}
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>{{ .Site.Title }}</title>
<description>FodyDev is an opensource organization who wants to promote the building of opensource technologies to valorize the African culture. We believe that, in working openly we can have archieve more.</description>
<link>{{ .Site.BaseURL }}</link>
<atom:link href="{{ .Site.BaseURL }}index.xml" rel="self" type="application/rss+xml" />
{{ range where .Site.RegularPages "Section" "eq" "blog" }}
<item>
<title>{{ .Title }}</title>
<guid>{{ .Permalink }}</guid>
<link>{{ .Permalink }}</link>
<description>{{ .Summary | replaceRE "“" "\"" | replaceRE "”" "\"" | replaceRE "’" "'" | replaceRE "—" "—" | safeHTML }}</description>
</item>
{{ end }}
</channel>
</rss>