update blog update blog update todo update blog correctly render fenced code blocks work on blog generation update blog script to deploy to local web server abs navigation links finish styling blog pages, start blog index update ppp generate blog index reverse blog index order update blog
		
			
				
	
	
		
			11 lines
		
	
	
		
			119 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			119 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| outdir=site
 | |
| dest="/srv/http/"
 | |
| 
 | |
| make clean
 | |
| make run
 | |
| 
 | |
| sudo rm -r $dest/*
 | |
| sudo cp -r $outdir/* $dest
 |