0
|
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()
|
0
|
7 local Shared = require "site:/lib/Shared.luan"
|
|
8 local head = Shared.head or error()
|
|
9 local header = Shared.header or error()
|
|
10
|
|
11
|
|
12 return function()
|
91
|
13 Io.stdout = text_writer()
|
0
|
14 %>
|
|
15 <!doctype html>
|
91
|
16 <html lang="<%=get_lang()%>">
|
0
|
17 <head>
|
|
18 <% head() %>
|
|
19 <title>Reactionary Software</title>
|
|
20 <style>
|
|
21 h1 {
|
|
22 margin-bottom: 0;
|
|
23 }
|
|
24 h3 {
|
|
25 margin-top: 8px;
|
|
26 }
|
|
27 </style>
|
15
|
28 </head>
|
0
|
29 <body>
|
|
30 <% header() %>
|
|
31 <div content>
|
|
32 <h1>Reactionary Software</h1>
|
|
33 <h3>Make software great again!</h3>
|
|
34 <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>
|
|
35 <ul links>
|
91
|
36 <li><a href="about.html">About Reactionary Software</a></li>
|
|
37 <li><a href="existing.html">Existing Reactionary Software</a></li>
|
|
38 <li><a href="needed.html">Needed Reactionary Software</a></li>
|
|
39 <li><a href="learn.html">Learn Reactionary Programming</a></li>
|
|
40 <li><a href="books.html">Reactionary Programming Books</a></li>
|
|
41 <li><a href="saving.html">Saving Programming from Modern Culture</a></li>
|
|
42 <li><a href="discussion.html">Discussion</a></li>
|
0
|
43 </ul>
|
|
44 </div>
|
|
45 </body>
|
|
46 </html>
|
|
47 <%
|
|
48 end
|