Mercurial Hosting > chat
view src/private/tools/index.html.luan @ 2:ee1f91e67509
add Db
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 24 Oct 2024 15:37:35 -0600 |
parents | b116b6ef07bf |
children | 2c63b10781e1 |
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.private_header or error() return function() Io.stdout = Http.response.text_writer() %> <!doctype html> <html> <head> <% head() %> <title>Chat Private Tools</title> </head> <body> <% header() %> <div content> <h1>Private Tools</h1> <p><a href="config.html">configure</a></p> <p><a href="lucene.html">lucene</a></p> </div> </body> </html> <% end