mirror of
https://github.com/go-gitea/gitea
synced 2025-01-08 00:44:26 +00:00
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"}}
|