| 1 | 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 | 
| 12 | 13 <p>Here is <a href="https://hg.reactionary.software/repo/arkian/">the source</a> of this website.  To get it, first install <a href="https://www.mercurial-scm.org/">Mercurial</a>.  Then on the command line, do:</p> | 
| 1 | 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 | 
| 12 | 47 <p>There is also <a href="https://hg.reactionary.software/repo/arkian_private/">a private website</a> containing private info that you need.  Ask another Arkian to give you access to it.  All of the above applies to the private website as well.</p> | 
|  | 48 | 
|  | 49 <p>These websites may be updated as needed, particularly to fix broken links.</p> | 
| 1 | 50 		</div> | 
|  | 51 	</body> | 
|  | 52 </html> |