view src/index.html.luan @ 11:4e58808aaed9

start about
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 15 Apr 2022 01:37:19 -0600
parents 23ec74373183
children 9694eff797bf
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</title>
		<style>
			h1 {
				margin-bottom: 0;
			}
			h3 {
				margin-top: 8px;
			}
		</style>
	<head>
	<body>
<%		header() %>
		<div content>
			<h1>Reactionary Software</h1>
			<h3>Make software great again!</h3>
			<p>For programmers who hate modern software.  Modern software is overcomplicated, bloated, unreliable, incomprehensible, pointlessly ideological, and mostly unusable.  We like the values of older software: simplicity, reliability, and usability.</p>
			<ul links>
				<li><a href="/about.html">About Reactionary Software</a></li>
				<li><a href="/existing.html">Existing Reactionary Software</a></li>
				<li><a href="/needed.html">Needed Reactionary Software</a></li>
				<li><a href="/books.html">Reactionary Programming Books</a></li>
				<li><a href="/discussion.html">Discussion</a></li>
			</ul>
		</div>
	</body>
</html>
<%
end