diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-15 00:39:41 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-15 00:39:41 -0500 |
commit | 17b0b282a2a17da1ed54c028fdf18b6760c7b129 (patch) | |
tree | 664aea81c28415d8092a58bdc56c5de86428547d /got/view_blob.got | |
parent | 06001af5fe64466bb2f26897ca2d72152d9ac06b (diff) |
add support for creating files
Diffstat (limited to 'got/view_blob.got')
-rw-r--r-- | got/view_blob.got | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/got/view_blob.got b/got/view_blob.got index 752d5c7..16d7ff1 100644 --- a/got/view_blob.got +++ b/got/view_blob.got @@ -1,6 +1,10 @@ <!-- -*- Mode: HTML -*- --> <h1>{{.path | html}}</h1> <p>Content-Type: {{.ctype | html}}</p> +{{if not .exists}} +<aside><p>This file does not exist, but it can be created by + submitting this page.</p></aside> +{{end}} {{if istext .ctype}} <form method="POST" enctype="multipart/form-data"> <input type="hidden" name="_method" value="PUT"> |