aboutsummaryrefslogtreecommitdiff
path: root/gen
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-07-14 08:39:03 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-07-14 08:39:03 -0500
commit30b6ddfa60dc0e9c74e4df5b0862e99b7d0fc31e (patch)
treeae353dfd0b8e07c824d403d459567435c6cf8ce7 /gen
parent36beb05176901c87f85c612e1afc60d52df86e50 (diff)
update formatting of index page
Diffstat (limited to 'gen')
-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)"