41 lines
953 B
XML
41 lines
953 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
<!-- The title of the entire blog/feed -->
|
|
<title></title>
|
|
|
|
<!-- The homepage URL of the site -->
|
|
<link href="" />
|
|
|
|
<!-- The timestamp of the most recent update in the whole feed -->
|
|
<updated></updated>
|
|
|
|
<!-- Author info for the feed itself -->
|
|
<author>
|
|
<name></name>
|
|
</author>
|
|
|
|
<!-- Unique identifier for this feed (often the site URL) -->
|
|
<id></id>
|
|
|
|
<!-- Begin individual blog post entries (repeatable) -->
|
|
<entry>
|
|
<!-- Post title -->
|
|
<title></title>
|
|
|
|
<!-- URL to view the full post -->
|
|
<link href="" />
|
|
|
|
<!-- Unique ID for this post (can be the full URL of the post) -->
|
|
<id></id>
|
|
|
|
<!-- Last updated timestamp for this post -->
|
|
<updated></updated>
|
|
|
|
<!-- Full content of the post, with type indicating it contains HTML -->
|
|
<content type="html">
|
|
<![CDATA[
|
|
|
|
]]>
|
|
</content>
|
|
</entry>
|