| 1 | {{ define "profile-tabs" -}} |
| 2 | <nav class="shithub-profile-tabs" aria-label="Profile sections"> |
| 3 | <a href="/{{ .User.Username }}" class="shithub-profile-tab{{ if eq .ActiveTab "overview" }} is-active{{ end }}"> |
| 4 | {{ octicon "book" }} Overview |
| 5 | </a> |
| 6 | <a href="/{{ .User.Username }}?tab=repositories" class="shithub-profile-tab{{ if eq .ActiveTab "repositories" }} is-active{{ end }}"> |
| 7 | {{ octicon "repo" }} Repositories |
| 8 | {{ with .Tabs.repositories }}<span class="shithub-tab-count">{{ . }}</span>{{ end }} |
| 9 | </a> |
| 10 | <a href="/{{ .User.Username }}?tab=stars" class="shithub-profile-tab{{ if eq .ActiveTab "stars" }} is-active{{ end }}"> |
| 11 | {{ octicon "star" }} Stars |
| 12 | {{ with .Tabs.stars }}<span class="shithub-tab-count">{{ . }}</span>{{ end }} |
| 13 | </a> |
| 14 | </nav> |
| 15 | {{- end }} |