# makeiabout.sh  scripts CopyLeft site
# CopyLeft (L°,) 2001 http://www.copyleft.be
# uitvoeren van in _script directory
#
echo Maken van copyleft pagina vanuit script dir
doelbestand="./../about/index.htm"
#
cat ./../_layout/head.txt > $doelbestand
cat ./../_data/author.txt >> $doelbestand
cat ./../_data/description.txt >> $doelbestand
cat ./../_data/keywords.txt >> $doelbestand
cat ./../_data/revisit.txt >> $doelbestand
cat ./../_data/robots.txt >> $doelbestand
cat ./../about/_data/title_copyleft.txt >> $doelbestand
cat ./../_data/statement.txt >> $doelbestand
cat ./../_data/made_by.txt >> $doelbestand
echo " `whoami` " >> $doelbestand
echo " `date` " >> $doelbestand
cat ./../_data/made_by_end.txt >> $doelbestand
cat ./../_layout/java.txt >> $doelbestand
cat ./../_layout/preload1.txt >> $doelbestand
cat ./../_layout/top.txt >> $doelbestand
#
cat ./../_layout/table1_nav1_b.txt >> $doelbestand
cat ./../_data/nav1.txt >> $doelbestand
cat ./../_layout/nav1_topic.txt >> $doelbestand
cat ./../_data/topic.txt >> $doelbestand
cat ./../_layout/topic_nav_about.txt >> $doelbestand
cat ./../_layout/nav_about.txt >> $doelbestand
#
cat ./../_layout/table1_copyleft.txt >> $doelbestand
cat ./../about/_data/copyleft.txt >> $doelbestand
cat ./../_layout/table2_copyleft.txt >> $doelbestand
#
cat ./../_layout/table1_5_nav_about.txt >> $doelbestand
cat ./../_layout/nav_about.txt >> $doelbestand
cat ./../_layout/nav_about_nav1.txt >> $doelbestand
cat ./../_data/nav1.txt >> $doelbestand
cat ./../_layout/browser1.txt >> $doelbestand
cat ./../_layout/foot1.txt >> $doelbestand
cat ./../_layout/table_end1.txt >> $doelbestand
cat ./../_layout/html_end.txt >> $doelbestand
#
exit 0







