mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
926 B
27 lines
926 B
{{template "base/head" .}} |
|
<div class="repository wiki new"> |
|
{{template "repo/header" .}} |
|
<div class="ui container"> |
|
{{template "repo/sidebar" .}} |
|
<div class="ui header"> |
|
{{.i18n.Tr "repo.wiki.new_page"}} |
|
</div> |
|
<form class="ui form" action="{{.Link}}" method="post"> |
|
<div class="field"> |
|
<input name="title" value="{{.title}}" autofocus> |
|
</div> |
|
<div class="field"> |
|
<textarea id="edit-area" name="content" data-url="{{AppSubUrl}}/api/v1/markdown" data-context="{{.RepoLink}}">{{.i18n.Tr "repo.wiki.welcome"}}</textarea> |
|
</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" .}} |