wiki/templates/edit.html

18 lines
350 B
HTML
Raw Normal View History

2020-05-07 12:15:36 +00:00
{{ define "navbar" }}
<a href="/{{ .Name }}" class="navbar-item">Back</a>
{{ end }}
2018-11-24 12:34:51 +00:00
{{define "content"}}
<h1 class="title">{{ .Title }}</h1>
<form action="/save/" method="post">
<input type="hidden" name="p" value="{{ .Name }}" />
2019-08-25 10:30:00 +00:00
{{ .Editor }}
2018-11-24 12:34:51 +00:00
</form>
{{ end }}
{{ define "content_head" }}
{{ end }}
2019-08-25 10:30:00 +00:00
{{ define "footer_scripts" }}
{{ end }}