steve0greatness,
created on Sunday, 4 February 2024, 21:26:05 (1707081965),
received on Monday, 6 May 2024, 02:55:37 (1714964137)
Author identity: Steve0Greatness <steve0greatnessiscool@gmail.com>
e1cd51cd48ee6cd5aec995ecedbf68b4bf82b613
build.py
@@ -65,7 +65,7 @@ def PostSortHelper(Post):
def GetBlogList(): print("Grabbing post list") PostSlugs: tuple[tuple[Literal["blog-posts", "drafts"], str], ...] = tuple( ("blog-posts", file) for file in ListDirectory("blog-posts") ) if not IS_GH_ACTIONS:if not IS_GH_ACTIONS and PathExists("drafts"):PostSlugs = PostSlugs + tuple( ("drafts", file) for file in ListDirectory("drafts") ) Posts = [] for dir, slug in PostSlugs: