2015-11-16 23:28:46 -05:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 17:56:10 -05:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository forks">
|
2015-12-07 17:30:52 -05:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
<h2 class="ui dividing header">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.forks"}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</h2>
|
2023-04-03 20:47:23 -04:00
|
|
|
{{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}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2021-11-18 09:45:56 -05:00
|
|
|
|
2022-08-25 17:55:52 -04:00
|
|
|
{{template "base/paginate" .}}
|
2015-10-01 09:17:27 -04:00
|
|
|
</div>
|
2015-11-16 23:28:46 -05:00
|
|
|
{{template "base/footer" .}}
|