16
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local Io = require "luan:Io.luan"
|
91
|
4 local Site_translator = require "luan:gpt/Site_translator.luan"
|
|
5 local get_lang = Site_translator.get_lang or error()
|
|
6 local text_writer = Site_translator.text_writer or error()
|
16
|
7 local Shared = require "site:/lib/Shared.luan"
|
|
8 local head = Shared.head or error()
|
|
9 local existing_header = Shared.existing_header or error()
|
|
10
|
|
11
|
|
12 return function()
|
91
|
13 Io.stdout = text_writer()
|
16
|
14 %>
|
|
15 <!doctype html>
|
91
|
16 <html lang="<%=get_lang()%>">
|
16
|
17 <head>
|
|
18 <% head() %>
|
17
|
19 <title>Reactionary Software - Python</title>
|
16
|
20 </head>
|
|
21 <body>
|
|
22 <% existing_header() %>
|
|
23 <div content>
|
|
24 <h1>Python</h1>
|
|
25
|
|
26 <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>
|
|
27 </div>
|
|
28 </body>
|
|
29 </html>
|
|
30 <%
|
|
31 end
|