mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 17:29:11 +01:00
ffddf3f8a6
Now defaults to 16 on both frontend and backend. Co-authored-by: techknowlogick <techknowlogick@gitea.io>
20 lines
587 B
Handlebars
20 lines
587 B
Handlebars
{{template "base/head" .}}
|
|
<div class="repository commits">
|
|
{{template "repo/header" .}}
|
|
<div class="ui container">
|
|
{{template "repo/sub_menu" .}}
|
|
<div class="ui secondary stackable menu mobile--margin-between-items">
|
|
{{template "repo/branch_dropdown" .}}
|
|
<div class="fitted item">
|
|
<a href="{{.RepoLink}}/graph" class="ui basic small compact button">
|
|
<span class="text">
|
|
{{svg "octicon-git-branch"}}
|
|
</span>
|
|
{{.i18n.Tr "repo.commit_graph"}}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{{template "repo/commits_table" .}}
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|