added rss to footer

This commit is contained in:
Alex Gentilucci 2020-09-02 17:29:07 -06:00
parent 9b3bdc6d9a
commit b6dedfd131
Signed by: nytpu
GPG Key ID: 144ADD49F173F5CE
1 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ make_rss() {
build_entries() {
echo "Building entries"
{
printf "yatb (yet another tech gemlog)\r\n\r\n"
printf "yatb (yet another tech gemlog)\r\n"
while IFS='' read -r i; do
post=$(basename $i)
@ -90,8 +90,8 @@ build_entries() {
done < <(ls -r [[:digit:]]*.gmi)
printf "\r\n\r\n"
printf "this gemlog/phlog/blog is mirrored on gopher at:\r\n"
printf "=> gopher://nytpu.com/phlog/\r\n\r\n"
printf "this gemlog has an rss feed at::\r\n"
printf "=> https://www.nytpu.com/files/feed.rss [https] https://www.nytpu.com/files/feed.rss\r\n"
} 3>&1 >"$index"
}