summaryrefslogtreecommitdiff
path: root/srv/src/http/tpl/edit-post.html
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2022-08-16 22:24:39 -0600
committerBrian Picciano <mediocregopher@gmail.com>2022-08-16 22:26:31 -0600
commitbb6c715a0ec9470c2cd5fdf5f86a2bf0b2c41f39 (patch)
tree000995bbac01f4f350dd410668e196bde6db0ea0 /srv/src/http/tpl/edit-post.html
parentc06dd5c5873f7d2c96946dd2414687e8b0eb71f3 (diff)
more polish, use table on index page
Diffstat (limited to 'srv/src/http/tpl/edit-post.html')
-rw-r--r--srv/src/http/tpl/edit-post.html24
1 files changed, 10 insertions, 14 deletions
diff --git a/srv/src/http/tpl/edit-post.html b/srv/src/http/tpl/edit-post.html
index 9376f2e..5db0600 100644
--- a/srv/src/http/tpl/edit-post.html
+++ b/srv/src/http/tpl/edit-post.html
@@ -1,16 +1,5 @@
{{ define "body" }}
-{{ if gt (len .Payload.Tags) 0 }}
-<p>
- Existing tags:
- <em>
- {{ range $i, $tag := .Payload.Tags }}
- {{ if ne $i 0 }} {{ end }}{{ $tag }}
- {{ end }}
- </em>
-</p>
-{{ end }}
-
<form method="POST" action="{{ BlogURL "posts/" }}">
<table>
@@ -34,9 +23,7 @@
</tr>
<tr>
- <td>
- <p>Tags (space separated)</p>
- </td>
+ <td>Tags (space separated)</td>
<td>
<input
name="tags"
@@ -45,6 +32,15 @@
{{- if ne $i 0 }} {{ end }}{{ $tag -}}
{{- end -}}
"/>
+
+ {{ if gt (len .Payload.Tags) 0 }}
+ <em>
+ Existing tags:
+ {{ range $i, $tag := .Payload.Tags }}
+ {{ if ne $i 0 }} {{ end }}{{ $tag }}
+ {{ end }}
+ </em>
+ {{ end }}
</td>
</tr>