Mercurial Hosting > luan
annotate website/src/index.html.luan @ 1928:e16f38f4fdfc
minor
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Sun, 27 Apr 2025 04:24:08 -0600 |
| parents | 1461449b6074 |
| children | 31f006c64782 |
| rev | line source |
|---|---|
| 1651 | 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 %> | |
| 1216 | 13 <!doctype html> |
|
391
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
Franklin Schmidt <fschmidt@gmail.com>
parents:
386
diff
changeset
|
14 <html> |
|
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
Franklin Schmidt <fschmidt@gmail.com>
parents:
386
diff
changeset
|
15 <head> |
| 1651 | 16 <% head() %> |
|
391
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
Franklin Schmidt <fschmidt@gmail.com>
parents:
386
diff
changeset
|
17 <title>Luan</title> |
|
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
Franklin Schmidt <fschmidt@gmail.com>
parents:
386
diff
changeset
|
18 </head> |
|
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
Franklin Schmidt <fschmidt@gmail.com>
parents:
386
diff
changeset
|
19 <body> |
| 1651 | 20 <% header() %> |
| 21 <div content> | |
| 22 <h1>The Luan Programming Language</h1> | |
|
1323
3860ed4b8552
simplify website css
Franklin Schmidt <fschmidt@gmail.com>
parents:
1310
diff
changeset
|
23 |
| 1827 | 24 <p>Luan is a <a href="https://www.lua.org/">Lua</a>-like language implemented in <a href="https://www.oracle.com/java/technologies/downloads/#java8">Java</a>.</p> |
|
1323
3860ed4b8552
simplify website css
Franklin Schmidt <fschmidt@gmail.com>
parents:
1310
diff
changeset
|
25 |
| 1654 | 26 <ul links> |
| 27 <li><a href="why.html">Why Luan?</a></li> | |
| 28 <li><a href="docs.html">Documentation</a></li> | |
| 1671 | 29 <li><a href="https://hg.reactionary.software/repo/luan">Source</a></li> |
| 1783 | 30 <li><a href="support.html">Support</a></li> |
| 1654 | 31 <li><a href="goodjava.html">The goodjava Library</a></li> |
| 32 </ul> | |
| 1579 | 33 |
| 1651 | 34 <div footer> |
| 35 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>. | |
| 36 </div> | |
| 1579 | 37 </div> |
|
391
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
Franklin Schmidt <fschmidt@gmail.com>
parents:
386
diff
changeset
|
38 </body> |
|
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
Franklin Schmidt <fschmidt@gmail.com>
parents:
386
diff
changeset
|
39 </html> |
| 1651 | 40 <% |
| 41 end |
