This commit improves templates readability, since all of them use consistent
indent with all template command blocks indented too.
1. Indents both HTML containers such as <div>, <p> and Go HTML template blocks
   such as {{if}} {{with}}
2. Cleans all trailing white-space
3. Adds trailing last line-break to each file
		
	
			
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			313 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			313 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 | 
						|
	<title>{{.Subject}}</title>
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
	<p>You are now a collaborator of this repository.</p>
 | 
						|
	<p>
 | 
						|
		---
 | 
						|
		<br>
 | 
						|
		View it on Gogs: <a href="{{.AppUrl}}{{.RepoLink}}">{{.RepoLink}}</a>
 | 
						|
	</p>
 | 
						|
</body>
 | 
						|
</html>
 |