Spaces:
Sleeping
Sleeping
File size: 296 Bytes
63caaa6 |
1 2 3 4 5 6 7 8 9 10 11 |
extends layout
block content
.container
form(action="/upload", method="post", enctype="multipart/form-data")
input(type="file", name="image", accept="image/*")
input(type="submit", value="Upload Image")
.gallery
each image in images
img(src="/data/" + image)
|