Mercurial Hosting > luan
view website/src/docs.html.luan @ 1698:2dbcc8360a3e
backup security
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 27 Jun 2022 20:51:49 -0600 |
parents | 3f28ea044a32 |
children | 4b56eff90040 |
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 docs_header = Shared.docs_header or error() return function() Io.stdout = Http.response.text_writer() %> <!doctype html> <html> <head> <% head() %> <title>Luan Documentation</title> </head> <body> <% docs_header() %> <div content> <h1>Luan Documentation</h1> <ul links> <li><a href="tutorial.html">Tutorial</a></li> <li><a href="pil.html">Programming in Lua (book)</a></li> <li><a href="manual.html">Reference Manual</a></li> <li><a href="diff.html">How Luan differs from Lua</a></li> </ul> </div> </body> </html> <% end