Mercurial Hosting > luan
view website/src/docs.html.luan @ 1652:d5779a264a4a
docs work
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 31 Mar 2022 19:04:59 -0600 |
parents | 5b8f056527a3 |
children | 3f28ea044a32 |
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> <div link><a href="tutorial.html">Tutorial</a></div> <div link><a href="pil.html">Programming in Lua (book)</a></div> <div link><a href="manual.html">Reference Manual</a></div> <div link><a href="diff.html">How Luan differs from Lua</a></div> </div> </body> </html> <% end