Initial Release
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<atom:link href="https://panca.kz/blog/rss.xml" rel="self" type="application/rss+xml"></atom:link>
|
||||
<link>https://panca.kz/blog</link>
|
||||
<title>pancakz Blog</title>
|
||||
<description>Tech, Chunibyo & Other Delusions</description>
|
||||
<category>Personal Blogs</category>
|
||||
<language>en-US</language>
|
||||
<generator>teto</generator>
|
||||
<copyright>Copyright 2026 bakonpancakz</copyright>
|
||||
<lastBuildDate>{{ .Date }}</lastBuildDate>
|
||||
</channel>
|
||||
{{ range $index, $elem := .Manifest.Articles }}
|
||||
<item>
|
||||
<link>https://panca.kz/blog/{{ $elem.ID }}</link>
|
||||
<guid isPermaLink="true">https://panca.kz/blog/{{ $elem.ID}}</guid>
|
||||
<title><![CDATA[{{ $elem.Title }}]]></title>
|
||||
<description><![CDATA[{{ $elem.Description }}]]></description>
|
||||
<pubDate>{{ $elem.Date.UTC.Format $.RFC1123 }}</pubDate>
|
||||
{{ range $i, $tag := $elem.Tags }}
|
||||
<category>{{ $tag }}</category>
|
||||
{{ end }}
|
||||
</item>
|
||||
{{ end }}
|
||||
</rss>
|
||||
Reference in New Issue
Block a user