fixed stuff

This commit is contained in:
Alex Gentilucci 2020-09-02 17:50:39 -06:00
parent 718dc5c8e7
commit 280de42898
Signed by: nytpu
GPG Key ID: 144ADD49F173F5CE
1 changed files with 3 additions and 2 deletions

View File

@ -80,7 +80,8 @@ make_rss() {
build_entries() {
echo "Building entries"
{
printf "# yatb (yet another tech gemlog)\r\n\r\n"
printf "# yatg (yet another tech gemlog)"
printf "## by nytpu"
while IFS='' read -r i; do
post=$(basename $i)
@ -95,7 +96,7 @@ build_entries() {
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"
printf "\r\n"
printf "=> /gemlog/old/ click here to view the old gemlog"
printf "=> /gemlog/old/ click here to view an archive of my old gemlog"
} 3>&1 >"$index"
}