2015-11-17 07:28:46 +03:00
|
|
|
{{template "base/head" .}}
|
2023-02-02 01:56:10 +03:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository forks">
|
2015-12-08 01:30:52 +03:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
<h2 class="ui dividing header">
|
2022-06-27 23:58:46 +03:00
|
|
|
{{.locale.Tr "repo.forks"}}
|
2015-12-08 01:30:52 +03:00
|
|
|
</h2>
|
2023-04-04 03:47:23 +03:00
|
|
|
{{range .Forks}}
|
|
|
|
<div class="gt-df gt-ac gt-py-3">
|
2023-08-10 06:19:39 +03:00
|
|
|
<span class="gt-mr-2">{{ctx.AvatarUtils.Avatar .Owner}}</span>
|
2023-04-04 03:47:23 +03:00
|
|
|
<a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> / <a href="{{.Link}}">{{.Name}}</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-12-08 01:30:52 +03:00
|
|
|
</div>
|
2021-11-18 17:45:56 +03:00
|
|
|
|
2022-08-26 00:55:52 +03:00
|
|
|
{{template "base/paginate" .}}
|
2015-10-01 16:17:27 +03:00
|
|
|
</div>
|
2015-11-17 07:28:46 +03:00
|
|
|
{{template "base/footer" .}}
|