1
0
Commit Graph

4 Commits

Author SHA1 Message Date
141c87f585
Remove duplicate images from static
All checks were successful
continuous-integration/drone/push Build is passing
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
2020-12-11 00:03:42 +02:00
fdd31782fa
Move all content to page bundles
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.
2020-12-04 22:55:28 +02:00
b02e65685a
Add post about Gadara martyrium (Umm Qays) 2020-04-20 15:56:53 +03:00
4566f432c3
Add post about Amman Citadel 2020-01-16 09:55:53 +02:00