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