about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorNeil Ray <ray@tilde.institute>2020-07-22 01:37:39 -0400
committerNeil Ray <ray@tilde.institute>2020-07-22 01:37:39 -0400
commite4938e71054ecf26fdd0f4d8c18587285a06f5cc (patch)
treec8412b12941b6a4c51e69710aff78954dd261054
downloadprep_html-e4938e71054ecf26fdd0f4d8c18587285a06f5cc.tar.gz
First commitment, then ...
-rw-r--r--end.html4
-rw-r--r--mid.html1
-rw-r--r--tinman3.pngbin0 -> 94540 bytes
-rw-r--r--top.html19
-rwxr-xr-xupdate.sh10
5 files changed, 34 insertions, 0 deletions
diff --git a/end.html b/end.html
new file mode 100644
index 0000000..3d2d4a9
--- /dev/null
+++ b/end.html
@@ -0,0 +1,4 @@
+
+</pre>
+</body>
+</html>
diff --git a/mid.html b/mid.html
new file mode 100644
index 0000000..4badb85
--- /dev/null
+++ b/mid.html
@@ -0,0 +1 @@
+Plan:
diff --git a/tinman3.png b/tinman3.png
new file mode 100644
index 0000000..ccc1817
--- /dev/null
+++ b/tinman3.png
Binary files differdiff --git a/top.html b/top.html
new file mode 100644
index 0000000..2a2c24f
--- /dev/null
+++ b/top.html
@@ -0,0 +1,19 @@
+<html>
+<head>
+  <title>Heartless and clueless</title>
+</head>
+
+<style>
+  body {background-color: ivory;}
+  h1 {color: red;}
+  p {color: blue;}
+</style>
+
+<body>
+
+<br>
+<img src=tinman3.png alt="If I only had a heart">
+<br><br>
+
+<pre>
+Projects:
diff --git a/update.sh b/update.sh
new file mode 100755
index 0000000..3afa373
--- /dev/null
+++ b/update.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+# concatenate html files & .plan then write to http root
+
+tin_img=tinman3.png
+
+cd ~/prep_html
+cat top.html ~/.project mid.html ~/.plan end.html > ~/public_html/index.html
+if [ -e ~/public_html/$tin_img ]; then cp $tin_img ~/public_html; fi
+