aboutsummaryrefslogtreecommitdiff
path: root/templates/repo/forks.tmpl
blob: 6a6ec3372135cbae3ae85e1ab131087a49d8eda7 (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="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">
					<img class="ui avatar image" src="{{.Owner.AvatarURLPath}}">
					<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" .}}