- 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>
		
			
				
	
	
		
			8 lines
		
	
	
		
			297 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			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 |