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