Email2RSS intial spec Web Template Notes
These are the html pages needed for one blog, as shown in the example layout.
- 'index.html' page describing the frameset.
- 'menu.html' on the right, describing the menu.
- This page will automatically add the month on the top, with navigation elements to next and previous months (if there is no previous or next month, just leave it un-clickable).
- 'intro.html' which will by default have the name of the author and that's it (can be changed by the user simply by emailing 'intro.html' as an attachment.
- 'main-blog.html' which describes the look and layout of the blog listing. It will cover one month.
- each blog entry.
main-blog.html the page with all the blog entries
The page template would include <Head> information as well as the formatting line and refer to how the posts should be listed with a single <--post comment. It could include CSS info and whatever.
For example:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<STYLE TYPE="text/css">
<!--
A:LINK {TEXT-DECORATION:none}
A:VISITED {TEXT-DECORATION:none}
A:ACTIVE {TEXT-DECORATION:none}
A:HOVER {TEXT-DECORATION:underline}
p {font-family: "Times New Roman", "Times"; line-height:145%}
--->
<title>username blog</title><br>
</head>
<BODY BGCOLOR="#ffffff" LINK="#999999" VLINK="#999999" ALINK="#000000"
TEXT="#333333">
each blog entry
The formating will be as it is in the sample.