Mercurial Hosting > chat
diff src/index.html.luan @ 0:fddd11ae516c
start
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 23 Oct 2024 13:13:07 -0600 |
parents | |
children | ee1f91e67509 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/index.html.luan Wed Oct 23 13:13:07 2024 -0600 @@ -0,0 +1,36 @@ +local Luan = require "luan:Luan.luan" +local error = Luan.error +local Io = require "luan:Io.luan" +local Http = require "luan:http/Http.luan" +local Shared = require "site:/lib/Shared.luan" +local head = Shared.head or error() +local header = Shared.header or error() + + +return function() + Io.stdout = Http.response.text_writer() +%> +<!doctype html> +<html> + <head> +<% head() %> + <title>Reactionary Chat</title> + <style> + h1 { + margin-bottom: 0; + } + h3 { + margin-top: 8px; + } + </style> + </head> + <body> +<% header() %> + <div content> + <h1>Reactionary Chat</h1> + <h3>A free web-based instant messaging service by <a href="https://www.reactionary.software/">Reactionary Software</a></h3> + </div> + </body> +</html> +<% +end