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
		
	
			
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			963 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			963 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
{{template "base/head" .}}
 | 
						|
<div class="repository view issue pull">
 | 
						|
	{{template "repo/header" .}}
 | 
						|
	<div class="ui container">
 | 
						|
		<div class="navbar">
 | 
						|
			{{template "repo/issue/navbar" .}}
 | 
						|
			<div class="ui right">
 | 
						|
				{{if .PageIsIssueList}}
 | 
						|
					<a class="ui green button" href="{{.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a>
 | 
						|
				{{else}}
 | 
						|
					<a class="ui green button {{if not .HasForkedRepo}}disabled{{end}}" href="{{.RepoLink}}/compare/{{.BranchName}}...{{.SignedUserName}}:{{.BranchName}}">{{.i18n.Tr "repo.pulls.new"}}</a>
 | 
						|
				{{end}}
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
		<div class="ui divider"></div>
 | 
						|
		{{if .Issue.IsPull}}
 | 
						|
			{{template "repo/issue/view_title" .}}
 | 
						|
			{{template "repo/pulls/tab_menu" .}}
 | 
						|
			<div class="ui bottom attached tab pull segment active" data-tab="request-{{.ID}}">
 | 
						|
				{{template "repo/issue/view_content" .}}
 | 
						|
			</div>
 | 
						|
		{{else}}
 | 
						|
			{{template "repo/issue/view_content" .}}
 | 
						|
		{{end}}
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
{{template "base/footer" .}}
 |