aboutsummaryrefslogtreecommitdiff
path: root/test.lua
diff options
context:
space:
mode:
authoriceyrazor <iceyrazor@mailfence.com>2026-08-25 00:28:39 -0500
committericeyrazor <iceyrazor@mailfence.com>2026-08-25 00:28:39 -0500
commitd302872f3ab4ec1870e93037b012019566fc554c (patch)
tree4c355cc1c9e55a01535990822f6234b5b0198d20 /test.lua
parent69c416c85bf92fca4b59aa78888a8aefbd0e0640 (diff)
reorginizationHEADmain
Diffstat (limited to 'test.lua')
-rwxr-xr-xtest.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/test.lua b/test.lua
deleted file mode 100755
index 7fdbaf9..0000000
--- a/test.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env luajit
-
-local ssg = require("www/cgi-bin/cgi")
-local str=""
-ssg.newline=true
-
-ssg.render(m("html",
- m("head",
- m("title","ssg test")
- )..
- m("body",
- m("h1","Hello from Lua CGI")..
- m("p", "ssg test")..
- m("p",_VERSION)
- )
-),
-{["Content-Type"]="text/html"},200)