view website/src/docs.html.luan @ 1323:3860ed4b8552

simplify website css
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 07 Feb 2019 05:38:38 -0700
parents 5dbb552075ff
children 1660136ac451
line wrap: on
line source

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


return function()
	Io.stdout = Http.response.text_writer()
%>
<!doctype html>
<html>
	<head>
		<title>Luan Documentation</title>
		<style>
			@import "/site.css";
		</style>
	</head>
	<body>
		<% Shared.header() %>
		<h1>Luan Documentation</h1>

		<div link><a href="tutorial.html">Tutorial</a></div>
		<div link><a href="pil.html">Programming in Lua (book)</a></div>
		<div link><a href="manual.html">Reference Manual</a></div>
		<div link><a href="diff.html">How Luan differs from Lua</a></div>
	</body>
</html>
<%
end