home · contact · privacy
Move all scripts etc. to their own directory.
[redo-blog] / default.html.do
diff --git a/default.html.do b/default.html.do
deleted file mode 100644 (file)
index 3ff4132..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-# Pull in global dependencies.
-. ./helpers.sh
-intermediate_file="${1%.html}.intermediate"
-redo-ifchange title
-redo-ifchange "$intermediate_file"
-
-# Build entry data.
-blog_title=`read_and_escape_file title | head -1`
-title_html=`cat "$intermediate_file" | head -1`
-title_plaintext=`echo "$title_html" | html2text`
-title_plaintext_escaped=`escape_html "$title_plaintext"`
-body=`cat "$intermediate_file" | sed 1d`
-
-# Write first part of entry head.
-cat << EOF
-<!DOCTYPE html>
-<html>
-<head>
-EOF
-
-# Write remaining entry head and body. 
-printf "<title>%s – %s</title>\n</head>\n<body>\n" "$blog_title" "$title_plaintext_escaped"
-#printf "<title>%s – %s</title>\n</head>\n<body>\n" "$blog_title" "$entry_title"
-printf "<h1>%s</h1>\n" "$title_html"
-printf "<section>\n%s\n</section>\n</body>\n</html>" "$body"