#!/bin/csh -efx

#foreach file (raw/*.jpg)
#  convert -resize 800x800 $file $file:t
#end

echo "<html><body>" > bridalveil.html
echo "<h3>Hike to Bridal Veil Falls</h3>" >> bridalveil.html
echo "<p>Wednesday, June 22, 2022</p>" >> bridalveil.html
foreach file (*.jpg)
  echo \<a href=\'raw/$file\'\>\<img src=\'$file\'\>\</a\> >> bridalveil.html
end
echo "</body></html>" >> bridalveil.html
