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
		
	
			
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			558 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			558 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
<div class="four wide column">
 | 
						|
	<div class="ui vertical menu">
 | 
						|
		<div class="header item">{{.i18n.Tr "org.settings"}}</div>
 | 
						|
		<a class="{{if .PageIsSettingsOptions}}active{{end}} item" href="{{.OrgLink}}/settings">
 | 
						|
			{{.i18n.Tr "org.settings.options"}}
 | 
						|
		</a>
 | 
						|
		<a class="{{if .PageIsSettingsHooks}}active{{end}} item" href="{{.OrgLink}}/settings/hooks">
 | 
						|
			{{.i18n.Tr "repo.settings.hooks"}}
 | 
						|
		</a>
 | 
						|
		<a class="{{if .PageIsSettingsDelete}}active{{end}} item" href="{{.OrgLink}}/settings/delete">
 | 
						|
			{{.i18n.Tr "org.settings.delete"}}
 | 
						|
		</a>
 | 
						|
	</div>
 | 
						|
</div>
 |