diff --git a/feed.xml b/feed.xml index 7089052..06c5833 100644 --- a/feed.xml +++ b/feed.xml @@ -5,11 +5,7 @@ askiiart.net The feed for askiiart.net, I guess https://askiiart.net - Mon, 25 Sep 2023 19:29:33 +0000 - - Portfolio - https://askiiart.net/portfolio.html - + Mon, 25 Sep 2023 19:46:11 +0000 Marlin Boot Animations https://askiiart.net/blog/marlin-boot-animations.html @@ -22,14 +18,6 @@ My Stack https://askiiart.net/stack.html - - Wishlist - https://askiiart.net/wishlist.html - - - Resume - https://askiiart.net/resume.html - Using JSON with docker compose https://askiiart.net/til/using-json-with-docker-compose.html diff --git a/md2html.sh b/md2html.sh index e14290d..eab3ecb 100755 --- a/md2html.sh +++ b/md2html.sh @@ -15,8 +15,8 @@ done # Based off https://en.wikipedia.org/wiki/RSS, particularly the example printf "\n\n\n\n askiiart.net\n The feed for askiiart.net, I guess\n https://askiiart.net\n $(TZ='UTC' date --rfc-2822)" > feed.xml find . -name "*.html" | while read -r item; do - # Skip template.html - if [[ ${item} == "./template.html" ]]; then + # Skip template.html, wishlist.html, resume.html, and portfolio.html + if [[ ${item} == "./template.html" || ${item} == "./wishlist.html" || ${item} == "./resume.html" || ${item} == "./portfolio.html" ]]; then continue fi item="${item%.*}"