view src/discussion.html.luan @ 25:c5e38932f986

update discussion page
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 23 Aug 2022 09:30:51 -0600
parents 4eac77bddd7c
children c6a350363bb6
line wrap: on
line source

local Luan = require "luan:Luan.luan"
local error = Luan.error
local Io = require "luan:Io.luan"
local Http = require "luan:http/Http.luan"
local Shared = require "site:/lib/Shared.luan"
local head = Shared.head or error()
local header = Shared.header or error()


return function()
	Io.stdout = Http.response.text_writer()
%>
<!doctype html>
<html>
	<head>
<%		head() %>
		<title>Reactionary Software - Discussion</title>
	</head>
	<body>
<%		header() %>
		<div content>
			<h1>Discussion</h1>
			<ul links>
				<li><a href="http://www.mikraite.org/Reactionary-Software-f1999.html">Forum on Mikraite</a></li>
			</ul>
		</div>
	</body>
</html>
<%
end