diff options
author | Carlos <carlos.fenollosa@gmail.com> | 2016-01-29 15:57:15 +0100 |
---|---|---|
committer | Carlos <carlos.fenollosa@gmail.com> | 2016-01-29 15:57:15 +0100 |
commit | 7d60c63ec5fd08170c27b48ff2e3e46053972c67 (patch) | |
tree | f105f16ceea65d6a6b6d72abb67f6b813fc6af58 | |
parent | 044e53d56c41db3ec22092b9e550a01e4342de2c (diff) |
fix #85
-rwxr-xr-x | bb.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -664,7 +664,7 @@ all_posts() { done < <(ls -t ./*.html) echo "" 1>&3 echo "</ul>" - echo "<div id=\"all_posts\"><a href=\"./\">$template_archive_index_page</a></div>" + echo "<div id=\"all_posts\"><a href=\"./$index_file\">$template_archive_index_page</a></div>" } 3>&1 >"$contentfile" create_html_page "$contentfile" "$archive_index.tmp" yes "$global_title — $template_archive_title" @@ -696,7 +696,7 @@ all_tags() { done echo "" 1>&3 echo "</ul>" - echo "<div id=\"all_posts\"><a href=\"./\">$template_archive_index_page</a></div>" + echo "<div id=\"all_posts\"><a href=\"./$index_file\">$template_archive_index_page</a></div>" } 3>&1 > "$contentfile" create_html_page "$contentfile" "$tags_index.tmp" yes "$global_title — $template_tags_title" |