wikingo/templates/edit.html

15 lines
366 B
HTML
Raw Permalink Normal View History

2022-03-22 15:36:18 +00:00
{{define "title"}}
Wikingo - Edit {{ .page.Name }}
{{end}}
{{define "body"}}
<h1>{{ .page.Name }}</h1>
<h2>Edit page: {{ .page.Name }}</h2>
<form method="POST">
<textarea name="html">{{ .page.Body }}</textarea>
<hr />
<button>Save</button>
2022-03-28 15:14:01 +00:00
<a href="/{{ .page.Name }}/{{ .page.Version }}">Cancel</a>
2022-03-22 15:36:18 +00:00
</form>
{{end}}