aboutsummaryrefslogtreecommitdiff
path: root/example-site/tpl/edit.md
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2026-01-21 00:40:17 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2026-01-21 00:40:17 -0500
commitcbb0dafad526128d10ff5f4859a1990132e4f75e (patch)
tree97f538f1797a3ff82088d9875b5fcce92b5e812a /example-site/tpl/edit.md
parentc5b07cd82fde44730997068029371f453bf31771 (diff)
downloadgo-website-wip.tar.gz
go-website-wip.tar.xz
Clean up the example site a touch and make a quick pass on the config load errorswip
Diffstat (limited to 'example-site/tpl/edit.md')
-rw-r--r--example-site/tpl/edit.md27
1 files changed, 0 insertions, 27 deletions
diff --git a/example-site/tpl/edit.md b/example-site/tpl/edit.md
deleted file mode 100644
index 4e55f82..0000000
--- a/example-site/tpl/edit.md
+++ /dev/null
@@ -1,27 +0,0 @@
----
-title: Editing Page
-description: Editor
-|---
-
-<form action="/edit/{{.Vars.Page}}" method="POST">
-<br />
-<label for="content">Page content:</label><br />
-<br />
-
-
-<textarea id="content" name="content" rows="24" cols="80">
-{{.Vars.Content}}
-</textarea>
-
-<br />
-<input type="submit" value="save">
-</form>
-
-
-<!-- test -->
-
-<script>
-window.addEventListener('load', (event) => {
- document.querySelector("#edit").remove();
-});
-</script>