mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 08:14:25 +00:00
15c035775a
* Add main aria landmark to templates * Adjust some titles to improve understanding of location in navigation Contributed by @Forgejo
25 lines
763 B
Handlebars
25 lines
763 B
Handlebars
{{template "base/head" .}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository new migrate">
|
|
<div class="ui middle very relaxed page grid">
|
|
<div class="column">
|
|
{{template "repo/migrate/helper" .}}
|
|
<div class="ui three stackable cards">
|
|
{{range .Services}}
|
|
<a class="ui card df ac" href="{{AppSubUrl}}/repo/migrate?service_type={{.}}&org={{$.Org}}&mirror={{$.Mirror}}">
|
|
{{svg (Printf "gitea-%s" .Name) 184}}
|
|
<div class="content">
|
|
<div class="header tc">
|
|
{{.Title}}
|
|
</div>
|
|
<div class="description tc">
|
|
{{(Printf "repo.migrate.%s.description" .Name) | $.locale.Tr}}
|
|
</div>
|
|
</div>
|
|
</a>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|