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
		
	
			
		
			
				
	
	
		
			12 lines
		
	
	
		
			290 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			290 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
| {{template "base/head" .}}
 | |
| <div class="organization settings webhooks">
 | |
| 	{{template "org/header" .}}
 | |
| 	<div class="ui container">
 | |
| 		<div class="ui grid">
 | |
| 			{{template "org/settings/navbar" .}}
 | |
| 			{{template "repo/settings/hook_list" .}}
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| {{template "base/footer" .}}
 |