Henrique Dias e9d507fec3 updates
2015-09-14 10:46:31 +01:00

17 lines
262 B
Cheetah

{{ define "content" }}
{{ with .Body }}
<div class="content">
<h1>Editing {{ .Name }}</h1>
<form method="POST" action="">
<textarea name="content">{{ .Content }}</textarea>
<input type="submit" value="Save">
</form>
</div>
{{ end }}
{{ end }}