Had to fix an issue in the blog post generation function. Was providing absolute path instead of relative
This commit is contained in:
@@ -33,7 +33,7 @@ last 5 posts
|
||||
TITLES=""
|
||||
for page in ${last_few_posts[@]}; do
|
||||
read JUNK TITLE <<< "$( grep '%title' $page )"
|
||||
TITLES="${TITLES}\n - [[$page|$TITLE]]"
|
||||
TITLES="${TITLES}\n - [[$(basename page)|$TITLE]]"
|
||||
done
|
||||
echo $TITLES
|
||||
`
|
||||
|
Reference in New Issue
Block a user