Three stages are required to integrate our Blog:
<!-- CMSBlog:Name --> - displays the blogs name
<!-- CMSBlogPost:Title --> - displays the title of the blog post; can use as page title, insert into <head> between the <title> tags
<!-- CMSBlogPost:Article --> - displays the content of the blog post
<!-- CMSBlog:RSSFeedURL --> - displays the RSS Feed URL for the associated blog
<!-- CMSBlogPost:AuthorName --> - displays the author’s name
<!-- CMSBlogPost:Date --> - displays the blog date in standard format: mm/dd/yy
<!-- CMSBlogPost:Date:dddd, MMMM d, yyyy --> - displays formated blog date; standard date and time format strings apply
<!-- CMSBlog:Dynamic:PostLastX:10 --> - displays the last 10 posts; changing the number changes the amount displayed
<!-- CMSBlog:Dynamic:PostLastX:0 --> - displays all posts associated with the blog
<!-- CMSBlog:Posts --> - displays a complete listing of all posts beginning with blog, year and than month
<!-- CMSBlog:Archives --> - displays an archive listing of posts by month and year
<html>
<head>
<title><!-- CMSBlogPost:Title --></title>
</head>
<body>
<div id="left">
<h1><!-- CMSBlog:Name --></h1></div>
<h2>Recent Articles</h2>
<div><!-- CMSBlog:Dynamic:PostLastX:10 --></div>
<h2>Archives</h2>
<div><!-- CMSBlog:Archives --></div>
<a href="<!-- CMSBlog:RSSFeedURL -->">RSS Feed</a>
<!-- CMSBlogPost:Date:dddd, MMMM d, yyyy --><br /></div>
<h2><!-- CMSBlogPost:Title --></h2>
<!-- CMSBlogPost:Article -->
<p><!-- CMSBlogPost:AuthorName --></p>