aboutsummaryrefslogtreecommitdiff
path: root/gen/gen_index.sh
diff options
context:
space:
mode:
Diffstat (limited to 'gen/gen_index.sh')
-rwxr-xr-xgen/gen_index.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/gen/gen_index.sh b/gen/gen_index.sh
index a9bcaf1..8fb76d7 100755
--- a/gen/gen_index.sh
+++ b/gen/gen_index.sh
@@ -1,8 +1,6 @@
#!/usr/bin/env bash
-echo -e "---\ntitle: All Stories\n---\n"
-
-echo "You can also see the stories sorted by life lessons [here](life_lessons.html)"
+echo -e "---\ntitle: Stories From the Life of Daniel Williams\n---\n"
echo
for i in $(find md -maxdepth 1 -name "*.md" -printf '%f\n'); do
@@ -13,3 +11,5 @@ for i in $(find md -maxdepth 1 -name "*.md" -printf '%f\n'); do
printf "%s. [$title](stories/${filename}.html)\n" "${filename%%_*}"
) &
done | sort -n
+
+echo "An index sorted by life lessons is available [here](life_lessons.html)"