view website/src/docs.html.luan @ 495:598123096772

rename service() to respond()
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 15 May 2015 18:10:14 -0600
parents 2b9bc97f0439
children 92c3d22745b8
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 respond()
	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