From 0c2d9535776957fbed5f698977cff94f9cbbf6cd Mon Sep 17 00:00:00 2001 From: = <=> Date: Thu, 9 Jun 2022 20:29:17 +0530 Subject: [PATCH] 'Posts Archive' -> 'Older Posts' because archival is another feature that's yet to be implemented. Plus, minor changes in README.md --- README.md | 2 +- gempost | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d9ef50a..325a7e3 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ If you are an existing user, please back up your **public_gemini/** directory an proceed with the given steps. **STEP 1** -Wih only your `index.gmi` file in **public_gemini/** directory, run the following to set everyting up: +With only your `index.gmi` file in **public_gemini/** directory, run the following to set everyting up: `gempost init` Note that `gempost init` won't work if you don't have gempost added to your path. For tildeverse members, you can just copy the executable to your **~/bin/** directory. Otherwise, you can just do `./gempost ` (in the directory where you have the gempost binary) instead of `gempost `. diff --git a/gempost b/gempost index c39b498..3c68ee1 100755 --- a/gempost +++ b/gempost @@ -192,7 +192,7 @@ def rebuildReferences(filename = None, title = None, callingFrom = "default"): with open(f"{postDir}archive.gmi","w") as ar: # creating all posts list ar.writelines(archiveLines) - headerText.append(f"=> postdir/archive.gmi Posts Archive") + headerText.append(f"=> postdir/archive.gmi Older Posts") with open(f"{wdir}posts.gmi",'w') as po: # finally writing into posts.gmi to "bring it all together" po.writelines(headerText)