Mercurial Hosting > disearch
view 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 source
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