summaryrefslogtreecommitdiffstats
path: root/templates/repo/forks.tmpl
blob: e3fd90c671fe0436d9b4574976243cb4ebaf6766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{template "base/head" .}}
<div class="repository forks">
  {{template "repo/header" .}}
  <div class="ui container">
    {{template "repo/sidebar" .}}
    <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" .}}