changeset 1:5419663ca6ca

add this.html
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 11 Sep 2025 16:18:29 -0600
parents 45a3989c3447
children c33c1f76ef2c
files src/index.html src/site.css src/this.html
diffstat 3 files changed, 67 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/index.html	Thu Sep 11 15:26:39 2025 -0600
+++ b/src/index.html	Thu Sep 11 16:18:29 2025 -0600
@@ -22,6 +22,7 @@
 				<li><a href="/about.html">About</a></li>
 				<li><a href="/requirements.html">Membership Requirements</a></li>
 				<li><a href="/discussion.html">Discussion</a></li>
+				<li><a href="/this.html">This Website</a></li>
 			</ul>
 		</div>
 	</body>
--- a/src/site.css	Thu Sep 11 15:26:39 2025 -0600
+++ b/src/site.css	Thu Sep 11 16:18:29 2025 -0600
@@ -64,3 +64,19 @@
 div[heading] > a {
 	font-size: 14px;
 }
+
+code {
+	background-color: #DDD;
+	white-space: pre-wrap;
+	word-wrap: break-word;
+	padding: 2px;
+}
+code[block] {
+	display: block;
+	padding: 1em;
+	margin-top: 1em;
+	margin-bottom: 1em;
+}
+code[block]:first-line {
+	line-height: 0;
+}
--- /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>