comparison src/needed.html.luan @ 91:76baf48ea36b

add translation
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 02 May 2025 17:17:52 -0600
parents a990d216add8
children
comparison
equal deleted inserted replaced
90:0dced626778b 91:76baf48ea36b
1 local Luan = require "luan:Luan.luan" 1 local Luan = require "luan:Luan.luan"
2 local error = Luan.error 2 local error = Luan.error
3 local Io = require "luan:Io.luan" 3 local Io = require "luan:Io.luan"
4 local Http = require "luan:http/Http.luan" 4 local Site_translator = require "luan:gpt/Site_translator.luan"
5 local get_lang = Site_translator.get_lang or error()
6 local text_writer = Site_translator.text_writer or error()
5 local Shared = require "site:/lib/Shared.luan" 7 local Shared = require "site:/lib/Shared.luan"
6 local head = Shared.head or error() 8 local head = Shared.head or error()
7 local needed_header = Shared.needed_header or error() 9 local needed_header = Shared.needed_header or error()
8 10
9 11
10 return function() 12 return function()
11 Io.stdout = Http.response.text_writer() 13 Io.stdout = text_writer()
12 %> 14 %>
13 <!doctype html> 15 <!doctype html>
14 <html> 16 <html lang="<%=get_lang()%>">
15 <head> 17 <head>
16 <% head() %> 18 <% head() %>
17 <title>Needed Reactionary Software</title> 19 <title>Needed Reactionary Software</title>
18 </head> 20 </head>
19 <body> 21 <body>
20 <% needed_header() %> 22 <% needed_header() %>
21 <div content> 23 <div content>
22 <h1>Needed Reactionary Software</h1> 24 <h1>Needed Reactionary Software</h1>
23 <ul links> 25 <ul links>
24 <li><a href="/lucene.html">Lucene Fork</a></li> 26 <li><a href="lucene.html">Lucene Fork</a></li>
25 <li><a href="/nabble.html">Forum - Nabble Rewrite</a></li> 27 <li><a href="nabble.html">Forum - Nabble Rewrite</a></li>
26 <li><a href="/hg_dev.html">Mercurial Development</a></li> 28 <li><a href="hg_dev.html">Mercurial Development</a></li>
27 <li><a href="/laf.html">Swing Look and Feel</a></li> 29 <li><a href="laf.html">Swing Look and Feel</a></li>
28 <li><a href="/java_fork.html">Java Fork</a></li> 30 <li><a href="java_fork.html">Java Fork</a></li>
29 </ul> 31 </ul>
30 </div> 32 </div>
31 </body> 33 </body>
32 </html> 34 </html>
33 <% 35 <%