filebrowser/templates/settings.tmpl

17 lines
324 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-16 20:48:08 +00:00
<div class="data">
{{ template "frontmatter" . }}
</div>
<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 }}