#!/bin/csh -efx

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

echo "<html><body>" > wallacefalls.html 
echo "<h3>Hike to Wallace Falls</h3>" >> wallacefalls.html
echo "<p>Monday, June 24, 2024</p>" >> wallacefalls.html
foreach file (*.jpg *.HEIC)
  echo \<a href=\'raw/$file\'\>\<img src=\'$file\'\>\</a\> >> wallacefalls.html
end
echo "</body></html>" >> wallacefalls.html
