GoBlog/templates/editor.gohtml

43 lines
1.7 KiB
Plaintext
Raw Normal View History

{{ define "title" }}
<title>{{ string .Blog.Lang "editor" }} - {{ .Blog.Title }}</title>
{{ end }}
{{ define "main" }}
<main>
<h1>{{ string .Blog.Lang "editor" }}</h1>
<h2>{{ string .Blog.Lang "create" }}</h2>
<form class="fw-form p" method="post">
<input type="hidden" name="h" value="entry">
2020-12-13 10:01:19 +00:00
<textarea name="content"></textarea>
<input class="fw" type="submit" value="{{ string .Blog.Lang "create" }}">
</form>
<h2>{{ string .Blog.Lang "update" }}</h2>
<form class="fw-form p" method="post">
{{ if .Data.UpdatePostURL }}
<input type="hidden" name="editoraction" value="updatepost">
<input type="hidden" name="url" value="{{ .Data.UpdatePostURL }}">
2020-12-13 10:01:19 +00:00
<textarea name="content">{{ .Data.UpdatePostContent }}</textarea>
{{ else }}
<input type="hidden" name="editoraction" value="loadupdate">
2020-12-13 10:01:19 +00:00
<input type="url" name="url" placeholder="URL">
{{ end }}
<input class="fw" type="submit" value="{{ string .Blog.Lang "update" }}">
</form>
<h2>{{ string .Blog.Lang "delete" }}</h2>
<form class="fw-form p" method="post">
<input type="hidden" name="action" value="delete">
2020-12-13 10:01:19 +00:00
<input type="url" name="url" placeholder="URL">
<input class="fw" type="submit" value="{{ string .Blog.Lang "delete" }}">
</form>
2020-12-13 10:28:46 +00:00
<h2>{{ string .Blog.Lang "upload" }}</h2>
<form class="fw-form p" method="post" enctype="multipart/form-data">
<input type="hidden" name="editoraction" value="upload">
<input class="fw" type="file" name="file">
<input class="fw" type="submit" value="{{ string .Blog.Lang "upload" }}">
</form>
</main>
{{ end }}
{{ define "editor" }}
{{ template "base" . }}
{{ end }}