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 - Discussion</title>
|
15
|
20 </head>
|
0
|
21 <body>
|
|
22 <% header() %>
|
|
23 <div content>
|
|
24 <h1>Discussion</h1>
|
|
25 <ul links>
|
79
|
26 <li><a href="https://discord.gg/7NcaTR576W">Discord</a></li>
|
67
|
27 <li><a href="https://mikraite.arkian.net/Reactionary-Software-f1999.html">Forum on Mikraite</a></li>
|
0
|
28 </ul>
|
|
29 </div>
|
|
30 </body>
|
|
31 </html>
|
|
32 <%
|
|
33 end
|