Forgejo/templates/repo/wiki/start.tmpl

16 lines
586 B
Go HTML Template
Raw Normal View History

2015-11-26 02:10:25 +01:00
{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content repository wiki start">
2015-11-26 02:10:25 +01:00
{{template "repo/header" .}}
<div class="ui container">
<div class="ui center segment tw-py-8">
{{svg "octicon-book" 48}}
<h2>{{ctx.Locale.Tr "repo.wiki.welcome"}}</h2>
<p>{{ctx.Locale.Tr "repo.wiki.welcome_desc"}}</p>
{{if and .CanWriteWiki (not .Repository.IsMirror)}}
<a class="ui primary button" href="{{.RepoLink}}/wiki?action=_new">{{ctx.Locale.Tr "repo.wiki.create_first_page"}}</a>
{{end}}
</div>
2015-11-26 02:10:25 +01:00
</div>
</div>
{{template "base/footer" .}}