#!/bin/sh

# And if this isn't the height of laziness, I don't know what is...


topfiles="index status download mail links how"

for i in $topfiles; do
    cat headchunk.html $i footchunk.html > ../${i}.html
done
exit 0

# For the unaware:  the reason all the files are assembled in this manner
# is because we want the table structures containing the TOC ("navigation
# bar" if you're that kind of person) to actually be part of each page.
# Otherwise we'd have to use separate files (one for the TOC and one for the
# page contents), and bring them together using frames.  But if there is
# anything more deserving of the name PURE EVIL than frames, I have not heard
# its name.  (They are very unkind to lynx, for example, and look butt-ugly
# in many browsers besides.  They are a layout wart in a markup language.)

