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

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

local Luan = require "luan:Luan.luan"
local Io = require "luan:Io.luan"
local Http = require "luan:http/Http.luan"


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

		<p small>under construction...</p>

		<p>Luan is a <a href="http://www.lua.org">Lua</a>-like language implemented in <a href="https://www.oracle.com/java/">Java</a>.</p>

		<div link><a href="docs.html">Documentation</a></div>
		<div link><a href="/download/">Download</a></div>
		<div link><a href="https://bitbucket.org/frschmidt/luan">Source</a></div>
		<div link><a href="http://forum.luan.ws/">Forum</a></div>
	</body>
</html>
<%
end