'Posts Archive' -> 'Older Posts' because archival is another feature that's yet to be implemented. Plus, minor changes in README.md

This commit is contained in:
= 2022-06-09 20:29:17 +05:30
parent faa11bd054
commit 0c2d953577
2 changed files with 2 additions and 2 deletions

View File

@ -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 <args>` (in the directory where you have the gempost binary) instead of `gempost <args>`.

View File

@ -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)