Mercurial Hosting > disearch
diff src/index.html.luan @ 1:d19b150ecb83
add Shared
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 19 Oct 2023 23:14:21 -0600 |
parents | |
children | 43814e9f5802 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/index.html.luan Thu Oct 19 23:14:21 2023 -0600 @@ -0,0 +1,27 @@ +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() +local footer = Shared.footer or error() + + +return function() + Io.stdout = Http.response.text_writer() +%> +<!doctype html> +<html> + <head> +<% head() %> + <title>Disearch</title> + </head> + <body> +<% header() %> + <p>under construction</p> +<% footer() %> + </body> +</html> +<% +end