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