view website/src/docs.html.luan @ 494:2b9bc97f0439

change luan:web to luan:http
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 15 May 2015 17:43:13 -0600
parents 2f5cc9c2cbf0
children 598123096772
line wrap: on
line source

local Io = require "luan:Io"
local Html = require "luan:Html"
local Http = require "luan:http/Http"
local Shared = require "site:/Shared"


function service()
	Io.stdout = Http.response.text_writer()
%>
<html>
	<head>
		<% Html.simply_html_head() %>
		<title>Luan Documentation</title>
	</head>
	<body>
		<div container>
			<% Shared.header() %>
			<h1 margin-bottom="1em">Luan Documentation</h1>

			<big>
				<p>
					<a href="tutorial.html">Tutorial</a><br>
					<a href="pil.html">Programming in Lua (book)</a><br>
					<a href="manual.html">Reference Manual</a><br>
					<a href="diff.html">How Luan differs from Lua</a><br>
				</p>
			</big>

		</div>
		<% Html.simply_html_body_bottom() %>
	</body>
</html>
<%
end