mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	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
		
	
			
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			290 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			290 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
| {{template "base/head" .}}
 | |
| <div class="repository settings webhooks">
 | |
| 	{{template "repo/header" .}}
 | |
| 	<div class="ui container">
 | |
| 		<div class="ui grid">
 | |
| 			{{template "repo/settings/navbar" .}}
 | |
| 			{{template "repo/settings/hook_list" .}}
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| {{template "base/footer" .}}
 |