view website/src/pil.html.luan @ 693:ca169567ce07

module URIs must now include ".luan"
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 19 Apr 2016 15:54:11 -0600
parents 7cc9d4a53d3b
children 5dbb552075ff
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()
%>
<html>
	<head>
		<title>Programming in Lua</title>
		<style>
			@import "/site.css";
		</style>
	</head>
	<body>
		<% Shared.header() %>
		<h1>Programming in Lua</h1>

		<p>Even though <a href="http://www.lua.org/pil/">Programming in Lua</a> is about Lua, not Luan, it still serves as an excellent introduction to Luan since the languages are so close.</p>
	</body>
</html>
<%
end