2017-12-23 22:48:47 +00:00
|
|
|
{{ define "title" }}Page Editor{{ end }}
|
|
|
|
{{ define "content" }}
|
|
|
|
<h1>Page Editor</h1>
|
|
|
|
|
2018-04-11 02:07:25 +00:00
|
|
|
<form class="form-inline" method="GET" action="/admin/editor">
|
|
|
|
Create a new page:
|
|
|
|
<div class="input-group">
|
|
|
|
<input type="text"
|
|
|
|
name="file"
|
|
|
|
class="form-control ml-2"
|
|
|
|
placeholder="about.md">
|
|
|
|
<div class="input-group-append">
|
|
|
|
<button type="submit" class="btn btn-primary">Go</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
2017-12-23 22:48:47 +00:00
|
|
|
{{ range .Data.FileTrees }}
|
|
|
|
{{ if .UserRoot }}
|
|
|
|
<h2>User Root</h2>
|
2018-04-11 02:07:25 +00:00
|
|
|
|
2017-12-23 22:48:47 +00:00
|
|
|
<p>
|
|
|
|
These are your custom web files that override those in the CoreRoot.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
{{ range .Files }}
|
|
|
|
<li><a href="/admin/editor?file={{ .Relative }}">{{ .Relative }}</a></li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ else }}
|
|
|
|
<h2>Core Root</h2>
|
|
|
|
<p>
|
|
|
|
These are the blog's built-in web files. If you edit them, your
|
|
|
|
changes will be saved into your User Root to override the file
|
|
|
|
from the Core Root.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
{{ range .Files }}
|
|
|
|
<li><a href="/admin/editor?file={{ .Relative }}&from=core">{{ .Relative }}</a></li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
</form>
|
|
|
|
{{ end }}
|