2017-10-14 23:17:39 +00:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 22:56:10 +00:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository commits">
|
2017-10-14 23:17:39 +00:00
|
|
|
{{template "repo/header" .}}
|
2024-02-15 22:21:13 +00:00
|
|
|
<div class="ui container flex-container">
|
2024-04-28 13:47:52 +00:00
|
|
|
{{if and (not .IsEmptyRepo) (.Permission.CanRead $.UnitTypeCode)}}
|
|
|
|
<div class="flex-container-nav">
|
|
|
|
{{template "repo/navbar" .}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2024-02-15 22:21:13 +00:00
|
|
|
<div class="flex-container-main">
|
|
|
|
{{if .PageIsPulse}}{{template "repo/pulse" .}}{{end}}
|
|
|
|
{{if .PageIsContributors}}{{template "repo/contributors" .}}{{end}}
|
2024-02-23 23:41:24 +00:00
|
|
|
{{if .PageIsCodeFrequency}}{{template "repo/code_frequency" .}}{{end}}
|
2024-02-24 10:22:51 +00:00
|
|
|
{{if .PageIsRecentCommits}}{{template "repo/recent_commits" .}}{{end}}
|
2017-10-14 23:17:39 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|
2024-02-15 22:21:13 +00:00
|
|
|
|