Had to add a filter for about-me.wiki so it didn't get added to blog posts

This commit is contained in:
Tristan Ancelet 2023-09-05 21:15:52 -05:00
parent dd90818d9c
commit 60debb69a7

View File

@ -7,7 +7,7 @@ function get_blog_pages () {
## Setting the list to the available blog files. ## Setting the list to the available blog files.
if ls -1 $BLOG_DIR/*.wiki >/dev/null 2>&1; then if ls -1 $BLOG_DIR/*.wiki >/dev/null 2>&1; then
VAR=( $(ls -1 $BLOG_DIR/*.wiki | grep -v 'index.wiki' ) ) VAR=( $(ls -1 $BLOG_DIR/*.wiki | grep -Ev 'index.wiki|about-me.wiki' ) )
fi fi
} }