this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove rss in favor of atom

Tholp ce07d326 c3002679

+2 -26
+1
.gitignore
··· 1 1 *.html 2 2 *.sko 3 3 *.xml 4 + *.atom
+1 -1
skid/blog/atom.sk
··· 17 17 <entry> 18 18 <id>https://tholps.site/!output_filename("[[file..1]]")</id> 19 19 <title>!insert("[[file..1]]" "title")</title> 20 - <link href="https://tholps.site/!output_filename("[[file..1]]")"/> 20 + <link href='https://tholps.site/!output_filename("[[file..1]]")'/> 21 21 <summary>!insert("[[file..1]]" "blurb")</summary> 22 22 <updated>!insert("[[file..1]]" "date")T01:00:00-05:00</updated> 23 23 </entry>
-20
skid/blog/rss.sk
··· 1 - <?xml version="1.0" encoding="UTF-8" ?> 2 - <rss version="2.0"> 3 - <channel> 4 - <title>The Thlog</title> 5 - <link>https://tholps.site</link> 6 - <description>Tholp's Blog</description> 7 - <generator>Skidmark</generator> 8 - <webMaster>tholp@tholps.site</webMaster> 9 - !for_each_file_in_group( file "blog") 10 - {{{ 11 - <item> 12 - <title>!insert("[[file..1]]" "title")</title> 13 - <guid>https://tholps.site/!output_filename("[[file..1]]")</guid> 14 - <link>https://tholps.site/!output_filename("[[file..1]]")</link> 15 - <description>!insert("[[file..1]]" "blurb")</description> 16 - <pubDate>!insert("[[file..1]]" "date")</pubDate> 17 - </item> 18 - }}} 19 - </channel> 20 - </rss>
-5
skidmark.toml
··· 10 10 [fileGroups.misc] 11 11 files = ["index.sk", "blog/index.sk", "404.sk", "sinister.sk", "junk-drawer.sk", "changelog.sk"] 12 12 13 - [fileGroups.blog_rss] 14 - files = ["blog/rss.sk"] 15 - outputExtention = "xml" 16 - convertHTML = false 17 - 18 13 [fileGroups.blog_atom] 19 14 files = ["blog/atom.sk"] 20 15 outputExtention = "atom"