Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
DulceKennedy (eldeadkennedy@shitposter.world)'s status on Monday, 18-Nov-2024 02:52:39 JSTDulceKennedy @waifu the filename is the alt text
#!/bin/bash
img_tags=""
for image in images/*; do
if [ -f "$image" ]; then
basename=$(basename "$image")
img_tags+="<img src=\"$image\" alt=\"$basename\">"
fi
done
cat template.html | sed "s#{{{GALLERY}}}#$img_tags#" > output.html