forked from gitea/gitea
		
	 15c035775a
			
		
	
	
		15c035775a
		
			
		
	
	
	
	
		
			
			* Add main aria landmark to templates * Adjust some titles to improve understanding of location in navigation Contributed by @Forgejo
		
			
				
	
	
		
			21 lines
		
	
	
		
			627 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			627 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{template "base/head" .}}
 | |
| <div role="main" aria-label="{{.Title}}" class="page-content repository commits">
 | |
| 	{{template "repo/header" .}}
 | |
| 	<div class="ui container">
 | |
| 		{{template "repo/sub_menu" .}}
 | |
| 		<div class="repo-button-row df ac sb fw mb-4 mt-3">
 | |
| 			<div class="df ac">
 | |
| 				{{template "repo/branch_dropdown" dict "root" .}}
 | |
| 				<a href="{{.RepoLink}}/graph" class="ui basic small compact button">
 | |
| 					<span class="text">
 | |
| 						{{svg "octicon-git-branch"}}
 | |
| 					</span>
 | |
| 					{{.locale.Tr "repo.commit_graph"}}
 | |
| 				</a>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 		{{template "repo/commits_table" .}}
 | |
| 	</div>
 | |
| </div>
 | |
| {{template "base/footer" .}}
 |