X-Git-Url: https://plomlompom.com/repos/?p=redo-blog;a=blobdiff_plain;f=processor%2Findex.html.do;h=105bc74309cc2e177fafd508fb52da4829c70e71;hp=1bd4dd13115f32556b77e065b223e8e488eb584e;hb=6b5631096b03f1c985bc40c4d2e244315280c686;hpb=8d2ae126b20e8548a846b335367482410d533fd9 diff --git a/processor/index.html.do b/processor/index.html.do index 1bd4dd1..105bc74 100644 --- a/processor/index.html.do +++ b/processor/index.html.do @@ -2,38 +2,45 @@ # 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" +# Write link list. +for file in ./${tmp_snippets_dir}/*; do + touch ./${tmp_snippets_dir}/list + cat "$file" ./${tmp_snippets_dir}/list > ./${tmp_snippets_dir}/tmp + mv ./${tmp_snippets_dir}/tmp ./${tmp_snippets_dir}/list +done +if [ -e "./${tmp_snippets_dir}/list" ]; then + list=$(cat ./${tmp_snippets_dir}/list | prep_sed) +fi +rm -rf "${tmp_snippets_dir}" + +# Put data into template. +template=$(cat "$template_file") +printf "%s" "$template" | \ +sed 's/%TITLE%/'"$title"'/g' | \ +sed 's/%LIST%/'"$list"'/g' | \ +tr '\a' '%'