aboutsummaryrefslogtreecommitdiff
path: root/templates/pages
diff options
context:
space:
mode:
authorMax Resnick <max@ofmax.li>2020-05-23 07:56:12 -0700
committerMax Resnick <max@ofmax.li>2020-06-22 22:37:17 -0700
commit85e7eaa3a1c9024c02cc9a63744cdfb144cc3737 (patch)
treea44855abcf5424126c54ee636463dc866e558561 /templates/pages
parent4e77ad5762539d8f9edf40d2668a998c38e834d3 (diff)
downloadiserv-85e7eaa3a1c9024c02cc9a63744cdfb144cc3737.tar.gz
adds tmpl, css, and fileserver
Diffstat (limited to '')
-rw-r--r--templates/pages/image.tmpl12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/pages/image.tmpl b/templates/pages/image.tmpl
new file mode 100644
index 0000000..4c9b7b0
--- /dev/null
+++ b/templates/pages/image.tmpl
@@ -0,0 +1,12 @@
+{{ define "content" }}
+<body>
+ <div>
+ <h3>Image</h3>
+ </div>
+ <div>
+ <figure>
+ <img src="http://localhost:8080{{ .ImageUrl }}">
+ </figure>
+ </div>
+</body>
+{{ end }}