X-Git-Url: https://plomlompom.com/repos/?p=redo-blog;a=blobdiff_plain;f=processor%2Findex.html.do;h=031029404ade82260ccb369b63f345d9961cb82f;hp=dca7c33bacc4795c5e727f2bdd2dd6e3f2e062c1;hb=ff5b37d8bc4cfba8f1db69a279da887accaa0296;hpb=6138fd7efef3873fa3f48b92f2275f86eb76e329 diff --git a/processor/index.html.do b/processor/index.html.do index dca7c33..0310294 100644 --- a/processor/index.html.do +++ b/processor/index.html.do @@ -2,47 +2,46 @@ # Pull in global dependencies. . ./helpers.sh -title_file=title.meta +metadata_dir=metadata +srcdir=`pwd` +title_file="$metadata_dir"/title redo-ifchange "$title_file" +template_file="${metadata_dir}"/index.tmpl +redo-ifchange "$template_file" -# Write index head. -cat << EOF - - - -EOF -blog_title=`read_and_escape_file "$title_file" | head -1` -printf "%s\n\n\n" "$blog_title" -printf "

%s

\n\n\n" +# Put data into template. +template=$(cat "$template_file") +printf "%s" "$template" | \ +sed 's/%TITLE%/'"$title"'/g' | \ +sed 's/%LIST%/'"$list"'/g' | \ +tr '\a' '%'