Mercurial Hosting > reactionary
annotate src/discussion.html.luan @ 32:d84e76175dd5
add dad
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Fri, 28 Apr 2023 21:08:28 -0600 |
| parents | c6a350363bb6 |
| children | 81c9b568cde9 |
| 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> | |
|
25
c5e38932f986
update discussion page
Franklin Schmidt <fschmidt@gmail.com>
parents:
24
diff
changeset
|
24 <li><a href="http://www.mikraite.org/Reactionary-Software-f1999.html">Forum on Mikraite</a></li> |
| 28 | 25 <li><a href="https://communities.win/c/programming">/c/programming on communities.win</a></li> |
| 0 | 26 </ul> |
| 27 </div> | |
| 28 </body> | |
| 29 </html> | |
| 30 <% | |
| 31 end |
