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