Mercurial Hosting > luan
view website/src/docs.html.luan @ 1651:5b8f056527a3
docs work
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 31 Mar 2022 16:13:32 -0600 |
parents | website/src/docs.html@d3e61cd2aca0 |
children | d5779a264a4a |
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() return function() Io.stdout = Http.response.text_writer() %> <!doctype html> <html> <head> <% head() %> <title>Luan Documentation</title> </head> <body> <% header{[[<a href="docs.html">Documentation</a>]]} %> <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