Mercurial Hosting > arkian
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/this.html Thu Sep 11 16:18:29 2025 -0600 @@ -0,0 +1,50 @@ +<!doctype html> +<html lang="en"> + <head> + <script src="/site.js"></script> + <script> head() </script> + <title>Arkian - This Website</title> + </head> + <body> + <script> header() </script> + <div content> +<h1>This Website</h1> + +<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> + +<code block> +hg clone https://hg.reactionary.software/repo/arkian +</code> + +<p>To updated the source, go into the <code>arkian</code> directory and do:</p> + +<code block> +hg pull -u +</code> + +<p>To run the website locally, first install Python. Then in the directory <code>arkian/src</code>, for Python 2 do:</p> + +<code block> +python -m SimpleHTTPServer +</code> + +<p>For Python 3 do:</p> + +<code block> +python3 -m http.server +</code> + +<p>Then in your browser, go to <a href="http://localhost:8000/">http://localhost:8000/</a>.</p> + +<p>Alternatively, you could install <a href="https://www.luan.software/">Luan</a> and then from directory <code>arkian</code> do:</p> + +<code block> +./serve.sh +</code> + +<p>Then in your browser, go to <a href="http://localhost:8080/">http://localhost:8080/</a>.</p> + +<p>This website may be updated as needed, particularly to fix broken links.</p> + </div> + </body> +</html>