view website/src/docs.html.luan @ 1735:4b56eff90040

add hosting.html
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 02 Oct 2022 17:32:00 -0600
parents 3f28ea044a32
children
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>
				<li><a href="hosting.html">Web Hosting</a></li>
			</ul>
		</div>
	</body>
</html>
<%
end