filebrowser/templates/settings.tmpl

15 lines
286 B
Cheetah
Raw Normal View History

2015-09-14 13:54:58 +00:00
{{ define "content" }}
2015-09-15 13:00:14 +00:00
<main>
2015-09-13 21:48:52 +00:00
{{ with .Body }}
<div class="content">
<h1>Settings</h1>
2015-09-14 17:18:26 +00:00
<form method="POST" action="/admin/settings">
2015-09-17 13:21:08 +00:00
{{ template "frontmatter" . }}
2015-09-16 20:48:08 +00:00
<input type="submit" data-message="Settings updated." value="Save">
2015-09-13 21:48:52 +00:00
</form>
</div>
2015-09-14 09:46:31 +00:00
{{ end }}
2015-09-15 13:00:14 +00:00
</main>
2015-09-14 13:00:12 +00:00
2015-09-14 13:54:58 +00:00
{{ end }}