aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/forks.tmpl
blob: 192291275f34ac8b4471161037ac810b00bb74ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{template "base/head" .}}
<div class="page-content repository forks">
	{{template "repo/header" .}}
	<div class="ui container">
		<h2 class="ui dividing header">
			{{.i18n.Tr "repo.forks"}}
		</h2>
		<div class="ui list">
			{{range .Forks}}
				<div class="item">
					{{avatar .Owner}}
					<div class="link">
						<a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a>
						/
						<a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a>
					</div>
				</div>
			{{end}}
		</div>
	</div>
</div>
{{template "base/footer" .}}