2017-10-15 04:47:39 +05:30
|
|
|
{{template "base/head" .}}
|
2023-02-02 04:26:10 +05:30
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository commits">
|
2017-10-15 04:47:39 +05:30
|
|
|
{{template "repo/header" .}}
|
2024-02-16 03:51:13 +05:30
|
|
|
<div class="ui container flex-container">
|
|
|
|
<div class="flex-container-nav">
|
|
|
|
{{template "repo/navbar" .}}
|
2017-10-15 04:47:39 +05:30
|
|
|
</div>
|
2024-02-16 03:51:13 +05:30
|
|
|
<div class="flex-container-main">
|
|
|
|
{{if .PageIsPulse}}{{template "repo/pulse" .}}{{end}}
|
|
|
|
{{if .PageIsContributors}}{{template "repo/contributors" .}}{{end}}
|
2024-02-24 05:11:24 +05:30
|
|
|
{{if .PageIsCodeFrequency}}{{template "repo/code_frequency" .}}{{end}}
|
2024-02-24 15:52:51 +05:30
|
|
|
{{if .PageIsRecentCommits}}{{template "repo/recent_commits" .}}{{end}}
|
2017-10-15 04:47:39 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|
2024-02-16 03:51:13 +05:30
|
|
|
|