Mercurial Hosting > reactionary
view src/discussion.html.luan @ 44:5b4d5cf453a8
start bash
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 04 Jan 2024 18:27:05 -0700 |
parents | 73bd183073cd |
children | 13faddead6cb |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local Io = require "luan:Io.luan" local Http = require "luan:http/Http.luan" local Shared = require "site:/lib/Shared.luan" local head = Shared.head or error() local header = Shared.header or error() return function() Io.stdout = Http.response.text_writer() %> <!doctype html> <html> <head> <% head() %> <title>Reactionary Software - Discussion</title> </head> <body> <% header() %> <div content> <h1>Discussion</h1> <ul links> <li><a href="https://discord.gg/vEtFmsNyjm">Discord</a></li> <li><a href="http://www.mikraite.org/Reactionary-Software-f1999.html">Forum on Mikraite</a></li> </ul> </div> </body> </html> <% end