mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:21:21 +03:00
da2585c11e
This commit improves templates readability, since all of them use consistent indent with all template command blocks indented too. 1. Indents both HTML containers such as <div>, <p> and Go HTML template blocks such as {{if}} {{with}} 2. Cleans all trailing white-space 3. Adds trailing last line-break to each file
35 lines
1.2 KiB
Cheetah
35 lines
1.2 KiB
Cheetah
{{template "base/head" .}}
|
|
<div class="repository wiki new">
|
|
{{template "repo/header" .}}
|
|
<div class="ui container">
|
|
{{template "base/alert" .}}
|
|
<div class="ui header">
|
|
{{.i18n.Tr "repo.wiki.new_page"}}
|
|
{{if .PageIsWikiEdit}}
|
|
<div class="ui right">
|
|
<a class="ui green small button" href="{{.RepoLink}}/wiki/_new">{{.i18n.Tr "repo.wiki.new_page_button"}}</a>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<input type="hidden" name="old_title" value="{{.old_title}}">
|
|
<div class="field {{if .Err_Title}}error{{end}}">
|
|
<input name="title" value="{{.title}}" autofocus required>
|
|
</div>
|
|
<div class="field">
|
|
<textarea id="edit-area" name="content" data-url="{{AppSubUrl}}/api/v1/markdown" data-context="{{.RepoLink}}">{{if .PageIsWikiEdit}}{{.content}}{{else}}{{.i18n.Tr "repo.wiki.welcome"}}{{end}}</textarea required>
|
|
</div>
|
|
<div class="field">
|
|
<input name="message" placeholder="{{.i18n.Tr "repo.wiki.default_commit_message"}}">
|
|
</div>
|
|
<div class="text right">
|
|
<button class="ui green button">
|
|
{{.i18n.Tr "repo.wiki.save_page"}}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|