Skip to content

Instantly share code, notes, and snippets.

@islandjoe
Created June 25, 2018 08:30
Show Gist options
  • Save islandjoe/38d9eaa4bf46b6700662673c8fea78a0 to your computer and use it in GitHub Desktop.
Save islandjoe/38d9eaa4bf46b6700662673c8fea78a0 to your computer and use it in GitHub Desktop.
Meme Machine: home.leaf
#set("title") { Home }
#set("body") {
<h1>Files</h1>
#for(file in files) {
<a href="/uploads/originals/#(file)" target="_blank">
<img src="/uploads/thumbs/#(file)"
style="border: 1px solid black; margin: 20px;" />
</a>
}
<form method="post" action="/upload" enctype="multipart/form-data">
<p><input type="file" name="upload[]" multiple/></p>
<p><button type="submit" class="btn">Upload</button></p>
</form>
}
#embed("master")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment