Last active
June 16, 2017 18:24
-
-
Save strangeways/17e1199ae59c52957bc5c40f67c503a1 to your computer and use it in GitHub Desktop.
Empty RSS feed - from https://stackoverflow.com/questions/4009114/how-to-make-an-empty-rss-feed
This file contains hidden or 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 version="2.0" | |
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" | |
| xmlns:admin="http://webns.net/mvcb/" | |
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
| xmlns:content="http://purl.org/rss/1.0/modules/content/"> | |
| <channel> | |
| <title>News at Example</title> | |
| <link>http://www.example.com/feed/sample-reviews</link> | |
| <description>Latest Additions to the Sample Category</description> | |
| <dc:language>en-us</dc:language> | |
| <dc:creator>Contact Example through our "contact us" page</dc:creator> | |
| <dc:rights>Copyright 2010 Example Technologies Inc.</dc:rights> | |
| <admin:generatorAgent rdf:resource="http://www.codeigniter.com/" /> | |
| <item><title></title></item> | |
| </channel></rss> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment