diff --git a/blog/content--01 b/blog/content--01
index 78a3c4c..b30f074 100644
--- a/blog/content--01
+++ b/blog/content--01
@@ -4,6 +4,7 @@
+ - 2024-01-14 Pushing New Boundaries
- 2023-12-01 Seeking New Paths
- 2023-10-31 We Need More Motivation
- 2023-03-29 New Year New Beginnings
diff --git a/blog/content-021 b/blog/content-020
similarity index 100%
rename from blog/content-021
rename to blog/content-020
diff --git a/blog/quote-021 b/blog/quote-020
similarity index 100%
rename from blog/quote-021
rename to blog/quote-020
diff --git a/scripts/new-post.sh b/scripts/new-post.sh
index 6e00d52..dae88a1 100755
--- a/scripts/new-post.sh
+++ b/scripts/new-post.sh
@@ -7,10 +7,11 @@ cd ../blog
POSTNUM=$( ls -l content-* | wc -l )
QUOTENUM=$( ls -l quote-* | wc -l )
if [[ $POSTNUM -gt $QUOTENUM ]];then
- CURRNUM=$POSTNUM
+ NUM=$POSTNUM
else
- CURRNUM=$QUOTENUM
+ NUM=$QUOTENUM
fi
+CURRNUM=$(( $NUM -2 ))
# Create post and quote from template
NEWPOSTNAME="content-$(printf %03d "$CURRNUM")"