This lists the files that make the modern-looking web page.  All of these
files (including the image) are under the same copyright as MaraDNS herself 
(see COPYING).  For the purposes of the copyright, the source refers to the
.embed files; the "binary" are the processed HTML files.

The script make.page converts all of the .embed files in to .html files.
It is used thusly to create the .html pages:

for a in *embed ; do
	./make.page $a
done

Once these HTML pages are made, it can make the pages thusly:

for a in *html ; do
	./make.page $a
done

The head.html is a compact, uncommented form of the page header
suitable for putting in web pages (it is uncommented because many
people are still on dialup).  A fully commented form of the page that
explains the tags and why they are the way they are is 
head_commented.html

tail.html is the footer placed at the bottom of each page.  These two
pages sandwich a page, which is simple HTML.

head.html refers to three external files, also in this directory:

* maradns.css: The CSS look of the web page

* maradns_p.css: The CSS look of the web when it is printed

* mara-tile.jpg: The background image for the web page.  I took this 
                 picture myself (it is a granite rock on Mt. Woodson 
                 near San Diego, CA, USA) and processed it with the 
                 GIMP to make a suitable web page background.

Some additional notes, in addition to being in head_commented.html, are in
DESIGN.NOTES.

