Created
July 28, 2019 13:00
-
-
Save kanru/3926d9ad1a8b6ce5586fe7bad301dbfb to your computer and use it in GitHub Desktop.
Example Zola RSS feed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"> | |
<channel> | |
<title></title> | |
<link>https%3A//example.com</link> | |
<description></description> | |
<generator>Zola</generator> | |
<language>en</language> | |
<atom:link href="https%3A//example.com/rss.xml" rel="self" type="application/rss+xml"/> | |
<lastBuildDate>Sun, 28 Jul 2019 00:00:00 +0000</lastBuildDate> | |
<item> | |
<title>Test</title> | |
<pubDate>Sun, 28 Jul 2019 00:00:00 +0000</pubDate> | |
<link>https%3A//example.com/hello-world/</link> | |
<guid>https%3A//example.com/hello-world/</guid> | |
<description><p>Hello</p> | |
</description> | |
</item> | |
</channel> | |
</rss> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment