#!/bin/bash

echo "Content-type: text/html"
echo
echo "<HTML>
<HEAD>
<TITLE>Store Front</TITLE>
</HEAD>
<BODY>
<h3 align=center>Lord of the Rings</h3>"
for i in $(ls ../htdocs/images)
do
	echo "<img src=\"../images/$i\"> &nbsp; $i<br>"
done
touch /tmp/foobar
echo "<br><a href=http://domain00/>Continue</a><br>
</BODY>
</HTML>"
