Mercurial Hosting > luan
annotate website/src/install.html.luan @ 1924:8c637b047a42
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 20 Apr 2025 21:20:08 -0600 |
parents | website/src/support.html.luan@6a95ec46404a |
children | 1461449b6074 |
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() %> |
1924 | 17 <title>Luan Installation</title> |
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
|
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> | |
1924 | 22 <h1>Luan Installation</h1> |
23 | |
24 <p>Luan requires <a href="https://www.oracle.com/java/technologies/javase/javase8-archive-downloads.html">Java (JDK) 8</a>, so you must install this first.</p> | |
1323
3860ed4b8552
simplify website css
Franklin Schmidt <fschmidt@gmail.com>
parents:
1310
diff
changeset
|
25 |
1924 | 26 <p>To just get a taste of Luan, you can download <a href="/download/">the tar file</a> and install it. This will let you run Luan.</p> |
27 | |
28 <p>But for any serious work, you should get <a href="https://hg.reactionary.software/repo/luan/">the source</a>. Running <code>build.sh</code> will build and install Luan.</p> | |
1579 | 29 </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
|
30 </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
|
31 </html> |
1651 | 32 <% |
33 end |