Mercurial Hosting > luan
annotate website/src/install.html.luan @ 2024:fa8304b060d9
rename launching luan files
| author | Franklin Schmidt <fschmidt@gmail.com> | 
|---|---|
| date | Wed, 29 Oct 2025 21:12:53 -0600 | 
| parents | bd00b36380d9 | 
| children | 
| rev | line source | 
|---|---|
| 1651 | 1 local Luan = require "luan:Luan.luan" | 
| 2 local error = Luan.error | |
| 3 local Io = require "luan:Io.luan" | |
| 1938 | 4 local Site_translator = require "luan:ai/Site_translator.luan" | 
| 1929 | 5 local get_lang = Site_translator.get_lang or error() | 
| 6 local text_writer = Site_translator.text_writer or error() | |
| 1651 | 7 local Shared = require "site:/lib/Shared.luan" | 
| 8 local head = Shared.head or error() | |
| 1927 | 9 local header = Shared.docs_header or error() | 
| 1651 | 10 | 
| 11 | |
| 12 return function() | |
| 1929 | 13 Io.stdout = text_writer() | 
| 1651 | 14 %> | 
| 1216 | 15 <!doctype html> | 
| 1929 | 16 <html lang="<%=get_lang()%>"> | 
| 391 
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
 Franklin Schmidt <fschmidt@gmail.com> parents: 
386diff
changeset | 17 <head> | 
| 1651 | 18 <% head() %> | 
| 1924 | 19 <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: 
386diff
changeset | 20 </head> | 
| 
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
 Franklin Schmidt <fschmidt@gmail.com> parents: 
386diff
changeset | 21 <body> | 
| 1651 | 22 <% header() %> | 
| 23 <div content> | |
| 1924 | 24 <h1>Luan Installation</h1> | 
| 25 | |
| 26 <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: 
1310diff
changeset | 27 | 
| 1924 | 28 <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> | 
| 29 | |
| 30 <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 | 31 </div> | 
| 391 
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
 Franklin Schmidt <fschmidt@gmail.com> parents: 
386diff
changeset | 32 </body> | 
| 
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
 Franklin Schmidt <fschmidt@gmail.com> parents: 
386diff
changeset | 33 </html> | 
| 1651 | 34 <% | 
| 35 end | 
