I moved most of these to each post's page bundle so we don't need
them here anymore. They are just taking up space in Git LFS! For
reference I used this god awful contraption to find images in the
content/posts folder and then delete them if they appear in static:
$ for image in $(find content/posts -iname "*.jpg" -o -iname "*.JPG" | awk -F/ '{print $4}'); do find ./static -iname "$image" -exec git rm {} \;; done
This allows me to use Hugo's image resizing to create img srcsets
where the client downloads an appropriate image depending on their
screen size.
I had to go back and find original photos for each of these posts
because Hugo was resizing my already-optimized versions and they
looked horrible. Unfortunately I couldn't find originals for these
posts:
- aqaba-dirty-disappointing
- contemporary-arab-design-jrf-showroom
- eid-mubarak-neighborhood-dumpster
- no-noise-near-noisy-mosque
- red-orange-yellow-rice-bab-al-yemen
Hugo will fall back to looking in the static directory for these.