@ -5,6 +5,6 @@ NOTES=$(find Resources/blog/ -type f -not -path "*drafts/*" -name "*.md" )
for n in $NOTES; do
BASE=$(basename $n|cut -d'.' -f1)
mkdir -vp /tmp/blog/content/posts/$BASE
cp -v $n /tmp/blog/content/posts/$BASE/index.md
mkdir -vp /tmp/blog/content/notes/$BASE
cp -v $n /tmp/blog/content/notes/$BASE/index.md
done