diff src/discussion.html.luan @ 0:c604a58600be

start
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 07 Apr 2022 16:06:10 -0600
parents
children 7d927dc1ee25
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/discussion.html.luan	Thu Apr 07 16:06:10 2022 -0600
@@ -0,0 +1,32 @@
+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/gddwbTraPQ">Reactionary Software Discord server</a></li>
+				<li><a href="http://www.mikraite.org/Good-Software-f1999.html">Good Software forum on Mikraite</a></li>
+				<li><a href="https://saidit.net/s/programming/">/s/programming on SaidIt</a></li>
+			</ul>
+		</div>
+	</body>
+</html>
+<%
+end