#!/bin/bash TITLE="About" ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/index.htm tmpl/footer.htm` > index.html TITLE="Downloads" ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/download.htm tmpl/footer.htm` > download.html TITLE="Features" ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/features.htm tmpl/footer.htm` > features.html TITLE="Screenshots" ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/screenshots.htm tmpl/footer.htm` > screenshots.html TITLE="News" ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/news.htm tmpl/footer.htm` > news.html TITLE="Documentation" ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/documentation.htm tmpl/footer.htm` > documentation.html TITLE="Help" ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/help.htm tmpl/footer.htm` > help.html TITLE="Support" ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/support.htm tmpl/footer.htm` > support.html TITLE="F.A.Q." ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/faq.htm tmpl/footer.htm` > faq.html TITLE="Community" ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/community.htm tmpl/footer.htm` > community.html TITLE="Registration" ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/register.htm tmpl/footer.htm` > register.html TITLE="Contact" ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/contact.htm tmpl/footer.htm` > contact.html TITLE="Legal" ; echo `eval $'cat <<\002\n'"$(<tmpl/header.htm)"$'\n\002'` `cat pages/legal.htm tmpl/footer.htm` > legal.html