2
|
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()
|
2
|
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()
|
2
|
14 %>
|
|
15 <!doctype html>
|
91
|
16 <html lang="<%=get_lang()%>">
|
2
|
17 <head>
|
|
18 <% head() %>
|
|
19 <title>Reactionary Software - Nginx</title>
|
15
|
20 </head>
|
2
|
21 <body>
|
|
22 <% existing_header() %>
|
|
23 <div content>
|
|
24 <h1>Nginx</h1>
|
|
25
|
91
|
26 <p>As a disclaimer, I haven't worked with <a href="https://nginx.org/en/">Nginx</a> directly. My sysadmin manages it. But I believe that it is good reactionary software. Nginx works reliably. It doesn't seem to be based on any senseless modern ideology. Its developers are from Russia, outside of the depraved West. And most tellingly, its <a href="http://hg.nginx.org/nginx/">source code</a> is on <a href="mercurial.html">Mercurial</a>.</p>
|
2
|
27 </div>
|
|
28 </body>
|
|
29 </html>
|
|
30 <%
|
|
31 end
|