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