Mercurial Hosting > reactionary
view src/python.html.luan @ 91:76baf48ea36b
add translation
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 02 May 2025 17:17:52 -0600 |
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 Site_translator = require "luan:gpt/Site_translator.luan" local get_lang = Site_translator.get_lang or error() local text_writer = Site_translator.text_writer or error() 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 = text_writer() %> <!doctype html> <html lang="<%=get_lang()%>"> <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