example.rss 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <rss version="2.0"
  3. xmlns:dc="http://purl.org/dc/elements/1.1/"
  4. xmlns:admin="http://webns.net/mvcb/"
  5. xmlns:content="http://purl.org/rss/1.0/modules/content/"
  6. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
  7. <channel>
  8. <title>Sample Feed</title>
  9. <link>http://example.org/</link>
  10. <description>For documentation only</description>
  11. <dc:language>en-us</dc:language>
  12. <dc:creator>Nobody ([email protected])</dc:creator>
  13. <dc:rights>Public domain</dc:rights>
  14. <dc:date>2024-02-26T17:28:12-08:00</dc:date>
  15. <admin:generatorAgent rdf:resource="http://www.example.org/"/>
  16. <admin:errorReportsTo rdf:resource="mailto:[email protected]"/>
  17. <item>
  18. <title>First!</title>
  19. <link>http://127.0.0.1:8080/static/example.com.html</link>
  20. <guid isPermaLink="false">[email protected]</guid>
  21. <description>
  22. This has a description.
  23. </description>
  24. <dc:subject>Tag1 Tag2</dc:subject>
  25. <dc:date>2024-02-26T17:28:12-08:00</dc:date>
  26. <content:encoded><![CDATA[
  27. This has a <b>description</b>.]]>
  28. </content:encoded>
  29. </item>
  30. </channel>
  31. </rss>