Chapter 3: Templates and Layout
Displaying Weblog Data
Problem
You want to display data about your weblog in a template.
Solution
Use the template tags prefixed with MTBlog.
Discussion
Movable Type includes a collection of variable tags for displaying information about a weblog in templates. These tags are prefixed with MTBlog. The following sample layout publishes some information about a weblog and the number of entries and comments.
<div>
<$MTBlogName$><br/>
<$MTBlogURL$><br/>
<$MTBlogDescription$><br/>
Entries: <$MTBlogEntryCount$>
Comments: <$MTBlogCommentCoount$>
</div>
For the full list of weblog-related tags see Appendix A.



