home · contact · privacy
Move (links to) files meant to be public into separate directory.
[redo-blog] / processor / default.html.do
index 3ff413230f8babfdd13d5ab3569f741327abd435..99be4638584ecc9b3cb6294c662b602c8ee02be0 100644 (file)
@@ -1,13 +1,15 @@
 #!/bin/sh
 
 # Pull in global dependencies.
-. ./helpers.sh
-intermediate_file="${1%.html}.intermediate"
-redo-ifchange title
+metadata_dir=.meta
+. "$metadata_dir"/helpers.sh
+intermediate_file="${metadata_dir}/${1%.html}.intermediate"
+title_file="${metadata_dir}"/title
+redo-ifchange "$title_file" 
 redo-ifchange "$intermediate_file"
 
 # Build entry data.
-blog_title=`read_and_escape_file title | head -1`
+blog_title=`read_and_escape_file "$title_file" | head -1`
 title_html=`cat "$intermediate_file" | head -1`
 title_plaintext=`echo "$title_html" | html2text`
 title_plaintext_escaped=`escape_html "$title_plaintext"`
@@ -22,6 +24,5 @@ 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"