Files
kestrelsnest-blog/deploy
Eric Wagoner 527f0a2640 Add Pagefind search functionality and fix missing images
- Installed Pagefind static search indexing
- Created search page with custom dark theme styling
- Added search to main navigation menu
- Updated deploy script to include Pagefind indexing
- Fixed missing images in birthday and chick legacy pages
- Copied all missing legacy images from archive

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 18:17:11 -04:00

8 lines
297 B
Bash
Executable File

#!/bin/sh
USER=admin
HOST=social
DIR=../../var/www/blog/www # the directory where your web site files should go
hugo && pagefind --site public && rsync -avz --no-t --no-p --delete public/ ${HOST}:~/${DIR} # this will delete everything on the server that's not in the local public folder
exit 0