view website/src/docs.html.luan @ 1654:3f28ea044a32

docs UI
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 04 Apr 2022 22:19:32 -0600
parents d5779a264a4a
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