changeset 0:24d8dc525146

start
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 19 Oct 2023 22:33:37 -0600
parents
children d19b150ecb83
files .hgignore serve.sh src/tools/links.html src/tools/tools.css
diffstat 4 files changed, 43 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore	Thu Oct 19 22:33:37 2023 -0600
@@ -0,0 +1,5 @@
+syntax: glob
+
+err
+rev.txt
+push-*.sh
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/serve.sh	Thu Oct 19 22:33:37 2023 -0600
@@ -0,0 +1,1 @@
+luan luan:http/serve.luan src 2>&1 | tee err
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/tools/links.html	Thu Oct 19 22:33:37 2023 -0600
@@ -0,0 +1,23 @@
+<!doctype html>
+<html>
+	<head>
+		<meta name="viewport" content="width=device-width, initial-scale=1">
+		<style>
+			@import "tools.css";
+		</style>
+	</head>
+	<body>
+		<h1>Links</h1>
+		<p><a href="/">home</a></p>
+		<p><a href="https://discord.gg/tCwTJDSatu">Discord</a></p>
+		<p><a href="https://hg.reactionary.software/repo/disearch/">source</a></p>
+		<p>
+			links:
+			<a href="http://test.disearch.org/tools/links.html">test</a>
+			- <a href="http://local.disearch.org:8080/tools/links.html">local</a>
+		</p>
+
+		<h3>private</h3>
+		<p><a href="/private/local/logs/">logs</a></p>
+	</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/tools/tools.css	Thu Oct 19 22:33:37 2023 -0600
@@ -0,0 +1,14 @@
+* {
+	box-sizing: border-box;
+}
+
+body {
+	font-family: Sans-Serif;
+}
+
+a {
+	text-decoration: none;
+}
+a:hover {
+	text-decoration: underline;
+}