mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-06 15:27:20 +03:00
0885784f13
* Implement wiki mirroring, add Update mirrors operation to admin dashboard * bindata.go update after merge * Implement checking Git repo endpoint existence, support for BB included * Remove admin dashboard operation Fix bindata.go * Apply gofmt to repo model file * Try to remove bindata from PR * Revert accepted wiki names change in favor of better system * Remove unused imports
16 lines
532 B
Cheetah
16 lines
532 B
Cheetah
{{template "base/head" .}}
|
|
<div class="repository wiki start">
|
|
{{template "repo/header" .}}
|
|
<div class="ui container">
|
|
<div class="ui center segment">
|
|
<span class="mega-octicon octicon-book"></span>
|
|
<h2>{{.i18n.Tr "repo.wiki.welcome"}}</h2>
|
|
<p>{{.i18n.Tr "repo.wiki.welcome_desc"}}</p>
|
|
{{if and .IsRepositoryWriter (not .IsRepositoryMirror)}}
|
|
<a class="ui green button" href="{{.RepoLink}}/wiki/_new">{{.i18n.Tr "repo.wiki.create_first_page"}}</a>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|