Remove the all folder in place of an all.html file. Create a main page which provides the output of it.

This commit is contained in:
2025-05-27 10:51:41 -07:00
parent e13a1633dd
commit 55742e50db
4 changed files with 30 additions and 7 deletions

20
pages/photos-all.sh Executable file

@ -0,0 +1,20 @@
#!/bin/bash
# Alias for new All Photos feed.
# Move to main directory.
DIR=`dirname $0`
cd $DIR/..
# Locations of photo scripts.
photos_all=./files/photos/all.html
photos=./pages/photos.sh
# If the all script does not exist,call the generator and ignore its output.
if [[ ! -e $photos_all ]]; then
$photos > /dev/null
fi
## Main ##
cat $photos_all
exit 0