code.gitea.io/gitea@v1.22.3/templates/repo/navbar.tmpl (about)

     1  <div class="ui fluid vertical menu">
     2  	<a class="{{if .PageIsPulse}}active {{end}}item" href="{{.RepoLink}}/activity">
     3  		{{ctx.Locale.Tr "repo.activity.navbar.pulse"}}
     4  	</a>
     5  	<a class="{{if .PageIsContributors}}active {{end}}item" href="{{.RepoLink}}/activity/contributors">
     6  		{{ctx.Locale.Tr "repo.activity.navbar.contributors"}}
     7  	</a>
     8  	<a class="{{if .PageIsCodeFrequency}}active{{end}} item" href="{{.RepoLink}}/activity/code-frequency">
     9  		{{ctx.Locale.Tr "repo.activity.navbar.code_frequency"}}
    10  	</a>
    11  	<a class="{{if .PageIsRecentCommits}}active{{end}} item" href="{{.RepoLink}}/activity/recent-commits">
    12  		{{ctx.Locale.Tr "repo.activity.navbar.recent_commits"}}
    13  	</a>
    14  </div>