diff options
-rw-r--r-- | end.html | 4 | ||||
-rw-r--r-- | mid.html | 1 | ||||
-rw-r--r-- | tinman3.png | bin | 0 -> 94540 bytes | |||
-rw-r--r-- | top.html | 19 | ||||
-rwxr-xr-x | update.sh | 10 |
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 + |