mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 07:21:36 +01:00 
			
		
		
		
	The new code structure is easier to make more improvements or refactor, for example: change the colors to de-emphasize more, or design some new layouts. --------- Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			511 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			511 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{template "devtest/devtest-header"}}
 | |
| <div class="page-content devtest ui container">
 | |
| 	<div>
 | |
| 		<h1>Commit Sign Badges</h1>
 | |
| 		{{range $commit := .MockCommits}}
 | |
| 			<div class="flex-text-block tw-my-2">
 | |
| 				{{template "repo/commit_sign_badge" dict "Commit" $commit "CommitBaseLink" "/devtest/commit" "CommitSignVerification" $commit.Verification}}
 | |
| 				{{template "repo/commit_sign_badge" dict "CommitSignVerification" $commit.Verification}}
 | |
| 			</div>
 | |
| 		{{end}}
 | |
| 	</div>
 | |
| </div>
 | |
| {{template "devtest/devtest-footer"}}
 |