mirror of
https://github.com/rjNemo/go-wiki
synced 2026-06-06 02:36:40 +00:00
10 lines
307 B
HTML
10 lines
307 B
HTML
{{define "title"}} {{.Title}} | Go-Wiki {{end}} {{define "content"}}
|
|
<h1>Editing {{.Title}}</h1>
|
|
|
|
<form action="/save/{{.Title}}" method="POST">
|
|
<div>
|
|
<textarea name="body" rows="20" cols="80">{{printf "%s" .Body}}</textarea>
|
|
</div>
|
|
<div><input type="submit" value="Save" /></div>
|
|
</form>
|
|
{{end}}
|