Page Titles & All Photos Page #5

Merged
me merged 14 commits from dev into main 2025-06-06 08:02:52 -07:00
5 changed files with 302 additions and 136 deletions
Showing only changes of commit fcb091a164 - Show all commits

View File

@ -50,7 +50,7 @@ function start_main_page {
echo -e "\t\t<div class='row'>" >> $mainpage
echo -e "\t\t\t<$a href='/photos-all'" >> $mainpage
echo -e "\t\t\t\tclass='col-12 header'>Click Here for the Full Image Feed" >> $mainpage
echo -e "\t\t\t\tclass='col-12 header'>Click Here for the Full Photo Feed" >> $mainpage
echo -e "\t\t\t</a>" >> $mainpage
echo -e "\t\t</div>" >> $mainpage
}
@ -180,7 +180,7 @@ function build_album_pages {
done
}
## Create an ALL page at /photos/all/ ##
## Create an ALL page. ##
function build_all_page {
# - Shows all photos in descending order, as an overall feed.
# - Four images wide.
@ -201,7 +201,6 @@ function build_all_page {
find $PHOTOS_DIR/ ! -name "*".html | sort -r | while read media_file; do
if [[ -d $media_file
|| "$media_file" == *"/photos/README.md"
|| "$media_file" == *"/all/README.md"
]]; then
continue
fi