Mercurial Hosting > reactionary
view src/needed.html.luan @ 66:4b68d7e43726
disearch
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 24 Aug 2024 22:26:46 -0600 |
parents | 04501bde187d |
children | b1982e401900 |
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 needed_header = Shared.needed_header or error() return function() Io.stdout = Http.response.text_writer() %> <!doctype html> <html> <head> <% head() %> <title>Needed Reactionary Software</title> </head> <body> <% needed_header() %> <div content> <h1>Needed Reactionary Software</h1> <ul links> <li><a href="/lucene.html">Lucene Fork</a></li> <li><a href="/java_fork.html">Java Fork</a></li> <li><a href="hg_dev.html">Mercurial Development</a></li> <li><a href="/freedit.html">FreedIt - A Reddit Alternative</a></li> <li><a href="/wysiwyg.html">WYSIWYG Web Editor</a></li> <li><a href="http://disearch.reactionary.software/tools/why.html">Disearch - A Disboard Alternative</a> <img src="external_link.svg"></li> </ul> </div> </body> </html> <% end