aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/forks.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/repo/forks.tmpl')
-rw-r--r--templates/repo/forks.tmpl18
1 files changed, 6 insertions, 12 deletions
diff --git a/templates/repo/forks.tmpl b/templates/repo/forks.tmpl
index b05ebcc638..13810b44da 100644
--- a/templates/repo/forks.tmpl
+++ b/templates/repo/forks.tmpl
@@ -5,18 +5,12 @@
<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>
+ {{range .Forks}}
+ <div class="gt-df gt-ac gt-py-3">
+ <span class="gt-mr-2">{{avatar $.Context .Owner}}</span>
+ <a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> / <a href="{{.Link}}">{{.Name}}</a>
+ </div>
+ {{end}}
</div>
{{template "base/paginate" .}}