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
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
<div id="setting-menu" class="grid-1-5 panel panel-radius left">
 | 
						|
	<p class="panel-header"><strong>{{.i18n.Tr "repo.settings"}}</strong></p>
 | 
						|
	<div class="panel-body">
 | 
						|
		<ul class="menu menu-vertical switching-list grid-1-5 left">
 | 
						|
			<li {{if .PageIsSettingsOptions}}class="current"{{end}}><a href="{{.RepoLink}}/settings">{{.i18n.Tr "repo.settings.options"}}</a></li>
 | 
						|
			<li {{if .PageIsSettingsCollaboration}}class="current"{{end}}><a href="{{.RepoLink}}/settings/collaboration">{{.i18n.Tr "repo.settings.collaboration"}}</a></li>
 | 
						|
			<li {{if .PageIsSettingsHooks}}class="current"{{end}}><a href="{{.RepoLink}}/settings/hooks">{{.i18n.Tr "repo.settings.hooks"}}</a></li>
 | 
						|
			{{if or .SignedUser.AllowGitHook .SignedUser.IsAdmin}}
 | 
						|
				<li {{if .PageIsSettingsGitHooks}}class="current"{{end}}><a href="{{.RepoLink}}/settings/hooks/git">{{.i18n.Tr "repo.settings.githooks"}}</a></li>
 | 
						|
			{{end}}
 | 
						|
			<li {{if .PageIsSettingsKeys}}class="current"{{end}}><a href="{{.RepoLink}}/settings/keys">{{.i18n.Tr "repo.settings.deploy_keys"}}</a></li>
 | 
						|
		</ul>
 | 
						|
	</div>
 | 
						|
</div>
 |