owl-blogs/render/templates/views/editor.tmpl

18 lines
336 B
Cheetah
Raw Normal View History

2023-07-16 19:48:39 +00:00
{{define "title"}}Editor{{end}}
{{define "main"}}
2023-08-05 11:35:56 +00:00
<a href="/admin">&larr; Back</a>
2023-07-16 19:48:39 +00:00
<br>
<br>
<form method="POST" enctype="multipart/form-data">
2023-07-16 19:48:39 +00:00
{{.}}
<div class="grid">
<input type="submit" name="action" value="Publish" />
<input class="secondary" type="submit" name="action" value="Save as Draft" />
</div>
</form>
2023-07-16 19:48:39 +00:00
{{end}}