view website/src/docs.html.luan @ 387:23d075ce1e48

add website/src/Shared.luan
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 23 Apr 2015 18:16:15 -0600
parents db23f654f87d
children 2f5cc9c2cbf0
line wrap: on
line source

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


function service()
	Io.stdout = Http.response.text_writer()
	Html.simply_html_page{
		head = function() %>
			<title>Luan Documentation</title>
<%		end;
		body = function() %>
		<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>
<%		end;
	}
end