view src/python.html.luan @ 17:837da2e37165

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 10 May 2022 16:28:46 -0600
parents bac9577e951b
children
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 existing_header = Shared.existing_header or error()


return function()
	Io.stdout = Http.response.text_writer()
%>
<!doctype html>
<html>
	<head>
<%		head() %>
		<title>Reactionary Software - Python</title>
	</head>
	<body>
<%		existing_header() %>
		<div content>
			<h1>Python</h1>

			<p>I have never done a major project in <a href="https://www.python.org/">Python</a>, so I am not qualified to write this page.  But I have looked at Python enough to know that it qualifies as good reactionary software.  Python was developed in the 1990s, before the West became depraved.  If you are a reactionary programmer with Python experience, please consider writing the content for this page, and I will replace this with what you write.</p>
		</div>
	</body>
</html>
<%
end