aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/forks.tmpl
blob: 91085b9d227f3565e41551cdba9fe357c21527df (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.AvatarLink}}">
          <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" .}}