view website/src/index.html.luan @ 774:3e30cf310e56

change download to use bitbucket
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 26 Aug 2016 03:15:41 -0600
parents ca169567ce07
children 87c63df214e9
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()
%>
<html>
	<head>
		<title>Luan</title>
		<style>
			@import "/site.css";
			h1 {
				margin: .5em 0 0;
			}
			div[uc] {
				margin: .5em 0 2.5em;
			}
			div[intro] {
				margin: 1.5em 0;
			}
			div[link] {
				margin: 0.5em 0;
			}
		</style>
	</head>
	<body>
		<div container>
			<h1>The Luan Programming Language</h1>
			<div uc>under construction...</div>
			<div intro>Luan is a <a href="http://www.lua.org">Lua</a>-like language implemented in <a href="https://www.oracle.com/java/">Java</a>.</div>
			<div link><a href="docs.html">Documentation</a></div>
			<div link><a href="https://bitbucket.org/frschmidt/luan/downloads/luan-<%=Luan.VERSION%>.tar">Download</a></div>
			<div link><a href="https://bitbucket.org/frschmidt/luan">Source</a></div>
			<div link><a href="http://luan.7479.n7.nabble.com/">Forum</a></div>
		</div>
	</body>
</html>
<%
end