diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/_foot.htm | 3 | ||||
-rw-r--r-- | src/compile.ht | 13 | ||||
-rw-r--r-- | src/gcl.ht | 8 | ||||
-rw-r--r-- | src/gcl/index.html | 21 |
4 files changed, 23 insertions, 22 deletions
diff --git a/src/_foot.htm b/src/_foot.htm index 287b2ba..bddc923 100644 --- a/src/_foot.htm +++ b/src/_foot.htm | |||
@@ -1,6 +1,7 @@ | |||
1 | <footer> | 1 | <footer> |
2 | $(case "$(title)" in ("") ;; (*) print "<a href=\"./index.html\">back</a>" ;; esac) | 2 | $(case "$(title)" in ("") ;; (*) print "<a href=\"./index.html\">back</a>" ;; esac) |
3 | <span id="copyright">(C) 2022 C. Duckworth</span> | 3 | <span id="copyright">(C) 2022 C. Duckworth</span> under the |
4 | <a href="gcl.html">Good Choices License</a>. | ||
4 | </footer> | 5 | </footer> |
5 | </body> | 6 | </body> |
6 | </html> | 7 | </html> |
diff --git a/src/compile.ht b/src/compile.ht new file mode 100644 index 0000000..5764828 --- /dev/null +++ b/src/compile.ht | |||
@@ -0,0 +1,13 @@ | |||
1 | ;@@title: Compiling!@@ | ||
2 | |||
3 | I've been using Emacs to write this site so far, and it has a convenient | ||
4 | <code>M-x compile</code> command that is fun to use. However, I frequently want | ||
5 | to compile from within my src/ directory, and the regular <code>compile</code> | ||
6 | command is pretty dumb. Luckily, there's <code>M-x project-compile</code>, | ||
7 | which knows where the project root is! Great! | ||
8 | |||
9 | However, the upshot is that I had to create a git repository of this website. | ||
10 | So it's getting ever closer to being available for perusal! Haha. | ||
11 | |||
12 | I'm wanting to wait until I have a <code>cgit</code> instance on acdw.casa, | ||
13 | and this can be its first repo <code>^_^</code>. | ||
diff --git a/src/gcl.ht b/src/gcl.ht new file mode 100644 index 0000000..472c7a1 --- /dev/null +++ b/src/gcl.ht | |||
@@ -0,0 +1,8 @@ | |||
1 | ;@@title: Good Choices License@@ | ||
2 | |||
3 | Everyone is permitted to do whatever they like with this software | ||
4 | without limitation. This software comes without any warranty | ||
5 | whatsoever, but with two pieces of advice: | ||
6 | |||
7 | - Be kind to yourself. | ||
8 | - Make good choices. | ||
diff --git a/src/gcl/index.html b/src/gcl/index.html deleted file mode 100644 index 3357702..0000000 --- a/src/gcl/index.html +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <meta charset="utf-8"> | ||
5 | <title>Good Choices License</title> | ||
6 | <style> | ||
7 | body{max-width:78ch;padding:2ch;margin:auto;font:24px serif;} | ||
8 | h1{font-size:2em;} | ||
9 | </style> | ||
10 | </head> | ||
11 | <body> | ||
12 | <h1>Good Choices License</h1> | ||
13 | <p>Everyone is permitted to do whatever they like with this software | ||
14 | without limitation. This software comes without any warranty | ||
15 | whatsoever, but with two pieces of advice:</p> | ||
16 | <ul> | ||
17 | <li>Be kind to yourself.</li> | ||
18 | <li>Make good choices.</li> | ||
19 | </ul> | ||
20 | </body> | ||
21 | </html> | ||