Skip to content

Instantly share code, notes, and snippets.

@AndrejMitrovic
Created April 23, 2019 08:52
Show Gist options
  • Save AndrejMitrovic/a60d1429ec050c694412c32f3c8fb9ab to your computer and use it in GitHub Desktop.
Save AndrejMitrovic/a60d1429ec050c694412c32f3c8fb9ab to your computer and use it in GitHub Desktop.
doctype html
html
head
title #{id} - WebChat
style.
textarea, input { width: 100%; }
textarea { resize: vertical; }
body
h1 Room '#{id}'
textarea#history(rows=20, readonly=true)
- foreach (ln; messages)
|= ln
form(action="room", method="POST")
input(type="hidden", name="id", value=id)
input(type="hidden", name="name", value=name)
input#inputLine(type="text", name="message", autofocus=true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment