Mercurial Hosting > reactionary
annotate src/discussion.html.luan @ 40:ebab99118e19
add learn.html
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 25 Dec 2023 20:22:17 -0700 |
parents | 73bd183073cd |
children | 13faddead6cb |
rev | line source |
---|---|
0 | 1 local Luan = require "luan:Luan.luan" |
2 local error = Luan.error | |
3 local Io = require "luan:Io.luan" | |
4 local Http = require "luan:http/Http.luan" | |
5 local Shared = require "site:/lib/Shared.luan" | |
6 local head = Shared.head or error() | |
7 local header = Shared.header or error() | |
8 | |
9 | |
10 return function() | |
11 Io.stdout = Http.response.text_writer() | |
12 %> | |
13 <!doctype html> | |
14 <html> | |
15 <head> | |
16 <% head() %> | |
17 <title>Reactionary Software - Discussion</title> | |
15 | 18 </head> |
0 | 19 <body> |
20 <% header() %> | |
21 <div content> | |
22 <h1>Discussion</h1> | |
23 <ul links> | |
39 | 24 <li><a href="https://discord.gg/vEtFmsNyjm">Discord</a></li> |
25
c5e38932f986
update discussion page
Franklin Schmidt <fschmidt@gmail.com>
parents:
24
diff
changeset
|
25 <li><a href="http://www.mikraite.org/Reactionary-Software-f1999.html">Forum on Mikraite</a></li> |
0 | 26 </ul> |
27 </div> | |
28 </body> | |
29 </html> | |
30 <% | |
31 end |