comparison src/this.html @ 1:5419663ca6ca

add this.html
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 11 Sep 2025 16:18:29 -0600
parents
children 5551c7b1a4cb
comparison
equal deleted inserted replaced
0:45a3989c3447 1:5419663ca6ca
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <script src="/site.js"></script>
5 <script> head() </script>
6 <title>Arkian - This Website</title>
7 </head>
8 <body>
9 <script> header() </script>
10 <div content>
11 <h1>This Website</h1>
12
13 <p>Here is <a href="https://hg.reactionary.software/repo/arkian/">the source</a> of this webite. To get it, first install <a href="https://www.mercurial-scm.org/">Mercurial</a>. Then on the command line, do:</p>
14
15 <code block>
16 hg clone https://hg.reactionary.software/repo/arkian
17 </code>
18
19 <p>To updated the source, go into the <code>arkian</code> directory and do:</p>
20
21 <code block>
22 hg pull -u
23 </code>
24
25 <p>To run the website locally, first install Python. Then in the directory <code>arkian/src</code>, for Python 2 do:</p>
26
27 <code block>
28 python -m SimpleHTTPServer
29 </code>
30
31 <p>For Python 3 do:</p>
32
33 <code block>
34 python3 -m http.server
35 </code>
36
37 <p>Then in your browser, go to <a href="http://localhost:8000/">http://localhost:8000/</a>.</p>
38
39 <p>Alternatively, you could install <a href="https://www.luan.software/">Luan</a> and then from directory <code>arkian</code> do:</p>
40
41 <code block>
42 ./serve.sh
43 </code>
44
45 <p>Then in your browser, go to <a href="http://localhost:8080/">http://localhost:8080/</a>.</p>
46
47 <p>This website may be updated as needed, particularly to fix broken links.</p>
48 </div>
49 </body>
50 </html>