Mercurial Hosting > reactionary
view src/python.html.luan @ 44:5b4d5cf453a8
start bash
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 04 Jan 2024 18:27:05 -0700 |
parents | 837da2e37165 |
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