From a6da4080099d47f6e733bac021a1967c06242097 Mon Sep 17 00:00:00 2001 From: Botond Hende Date: Sat, 7 Sep 2024 18:41:43 +0200 Subject: only use unpublished content when building locally --- modules/blogpost_processor.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/blogpost_processor.py b/modules/blogpost_processor.py index a8833e2..f8c06c2 100644 --- a/modules/blogpost_processor.py +++ b/modules/blogpost_processor.py @@ -216,10 +216,13 @@ class Post: return None -def get_posts(path: str) -> list[Post]: +def get_posts(path: str, local: bool) -> list[Post]: return_list = [] for directory in os.listdir(path): + if directory.endswith(".unpublished") and not local: + continue + return_list.append(Post(os.path.join(path, directory))) return_list.sort(key=lambda post: post.meta_data[PUBLISH_DATE_KEY], reverse=True) -- cgit v1.2.3-70-g09d2