make-web/src/index.ps

23 lines
379 B
PostScript
Raw Normal View History

2023-10-23 13:19:55 +02:00
#!/bin/ksh
2023-10-23 22:39:52 +02:00
echo "<h1>Welcome!</h1>"
2023-10-23 13:19:55 +02:00
2023-10-23 22:39:52 +02:00
echo "
<p>Welcome to my little place on the web. It may not been the pretties you've seen today, but it's all self made.</p>
2023-10-23 13:19:55 +02:00
2023-10-23 22:39:52 +02:00
"
2023-10-23 13:19:55 +02:00
2023-10-23 22:39:52 +02:00
echo "<h2>Posts</h2>"
echo "<ol>"
2023-10-23 13:19:55 +02:00
cd src/posts
2023-10-23 22:39:52 +02:00
ls -r1 | while read line
2023-10-23 13:19:55 +02:00
do
2023-10-23 22:39:52 +02:00
T="$(echo "${line%%.*}" | tr '_' ' ')"
L="posts/${line%%.*}.html"
echo "<li><a href=\"$L\">$T</a></li>"
2023-10-23 13:19:55 +02:00
done
echo "</ol>"