make-web/src/index.ps

41 lines
575 B
PostScript
Raw Normal View History

2023-10-23 13:19:55 +02:00
#!/bin/ksh
2023-10-24 08:08:46 +02:00
# chdir to working directory
cd src/posts
2023-10-23 13:19:55 +02:00
2023-10-24 08:08:46 +02:00
cat <<'EOF'
<h1>
Welcome!
</h1>
<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>
<h2>
Posts
</h2>
<ul>
EOF
2023-10-23 22:39:52 +02:00
2023-10-24 08:08:46 +02:00
# print list
2023-11-02 11:41:46 +01:00
ls -r1 *.ps *.pm *.ph *.pa *.pt 2>/dev/null | while read line
2023-10-23 13:19:55 +02:00
do
2023-10-24 08:08:46 +02:00
TITLE="$(echo "${line%%.*}" | tr '_' ' ')"
URI="posts/${line%%.*}.html"
cat <<EOF
<li>
<a href="$URI">
$TITLE
</a>
</li>
EOF
2023-10-23 13:19:55 +02:00
done
2023-10-24 08:08:46 +02:00
cat <<EOF
</ul>
EOF
2023-10-23 13:19:55 +02:00