Move the heading generating to a partial that iteratively wraps each character of the heading in a <span>. The CSS for the site heading uses :nth-child to color each span a different color.
		
			
				
	
	
		
			1 line
		
	
	
	
		
			54 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			1 line
		
	
	
	
		
			54 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ range (split . "") }}<span>{{ . }}</span>{{ end }}
 |