14 lines
306 B
Cheetah
14 lines
306 B
Cheetah
{{ define "content" }} {{ with .Body }}
|
|
|
|
<div class="content">
|
|
<h1>Editing {{ .Name }}</h1>
|
|
|
|
<form method="POST" action="">
|
|
{{ template "frontmatter" .FrontMatter }}
|
|
<textarea name="content">{{ .Content }}</textarea>
|
|
<input type="submit" value="Save">
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{ end }} {{ end }} |