comparison website/src/index.html.luan @ 1651:5b8f056527a3

docs work
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 31 Mar 2022 16:13:32 -0600
parents website/src/index.html@dd881eb03d87
children 3f28ea044a32
comparison
equal deleted inserted replaced
1650:cc3b10a94612 1651:5b8f056527a3
1 local Luan = require "luan:Luan.luan"
2 local error = Luan.error
3 local Io = require "luan:Io.luan"
4 local Http = require "luan:http/Http.luan"
5 local Shared = require "site:/lib/Shared.luan"
6 local head = Shared.head or error()
7 local header = Shared.header or error()
8
9
10 return function()
11 Io.stdout = Http.response.text_writer()
12 %>
13 <!doctype html>
14 <html>
15 <head>
16 <% head() %>
17 <title>Luan</title>
18 </head>
19 <body>
20 <% header() %>
21 <div content>
22 <h1>The Luan Programming Language</h1>
23
24 <p small>under construction...</p>
25
26 <p>Luan is a <a href="http://www.lua.org">Lua</a>-like language implemented in <a href="https://www.oracle.com/java/">Java</a>.</p>
27
28 <div link><a href="why.html">Why Luan?</a></div>
29 <div link><a href="docs.html">Documentation</a></div>
30 <div link><a href="download/">Download</a></div>
31 <div link><a href="https://hg.luan.software/luan">Source</a></div>
32 <div link><a href="http://forum.luan.software/">Support Forum</a></div>
33 <div link><a href="goodjava.html">The goodjava Library</a></div>
34
35 <div footer>
36 Luan was optimized with <a href="https://www.yourkit.com/java/profiler/">YourKit Java Profiler <img src="https://www.yourkit.com/images/yklogo.png"></a>.
37 </div>
38 </div>
39 </body>
40 </html>
41 <%
42 end