#!/bin/ksh
echo "
Welcome!
"
echo "
Welcome to my little place on the web. It may not been the pretties you've seen today, but it's all self made.
"
echo "Posts
"
echo ""
cd src/posts
ls -r1 | while read line
do
T="$(echo "${line%%.*}" | tr '_' ' ')"
L="posts/${line%%.*}.html"
echo "- $T
"
done
echo "
"