summaryrefslogtreecommitdiffstats
path: root/templates/repo/forks.tmpl
blob: b05ebcc638bc643997f12f6ff6b5efb504f1826f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content repository forks">
	{{template "repo/header" .}}
	<div class="ui container">
		<h2 class="ui dividing header">
			{{.locale.Tr "repo.forks"}}
		</h2>
		<div class="ui list">
			{{range .Forks}}
				<div class="item">
					{{avatar $.Context .Owner}}
					<div class="link">
						<a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a>
						/
						<a href="{{.Link}}">{{.Name}}</a>
					</div>
				</div>
			{{end}}
		</div>
	</div>

	{{template "base/paginate" .}}
</div>
{{template "base/footer" .}}