view website/src/support.html.luan @ 1811:55d89a183c82 default tip

remove line_diff from luan
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 15 May 2024 18:02:28 -0600
parents 3b7a8f1cc887
children
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>Luan Support</title>
	</head>
	<body>
<%		header() %>
		<div content>
			<h1>Luan Support</h1>

			<ul links>
				<li><a href="https://discord.gg/R6A3kaAJwj">Discord</a></li>
				<li><a href="http://forum.luan.software/">Forum</a></li>
			</ul>
		</div>
	</body>
</html>
<%
end