date in index #9
All checks were successful
Publish latest version / build (push) Successful in 50s

this could lead to a offset of one day max since we don't use the tz
This commit is contained in:
Mylloon 2024-11-17 14:45:56 +01:00
parent ad7922c68f
commit 608e85bc93
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
3 changed files with 19 additions and 3 deletions

View file

@ -13,7 +13,18 @@ def index() -> str:
"""index page"""
posts = []
if not Config.private or (Config.private and Config.is_logged()):
posts = [p.split("/")[-1][:-4] for p in get_posts()]
for p in get_posts():
def titleify(s):
return s.split("/")[-1]
def linkify(s):
return ".".join(titleify(s).split(".")[:-1])
def datify(s):
return s[:-14] + " " + s[-4:]
posts.append((linkify(p), titleify(p), datify(get_post_cdate(p))))
return render_template(
"index.html",

View file

@ -19,7 +19,8 @@
<ul>
{% for p in posts: %}
<li>
<a href="{{ config.sanitized_base() }}/read/{{ p }}">{{ p }}.txt</a>
<a href="{{ config.sanitized_base() }}/read/{{ p[0] }}">{{ p[1] }}</a>
({{ p[2] }})
</li>
{% endfor %}
</ul>

View file

@ -51,7 +51,11 @@ def get_post(filename: str) -> File | None:
return None
else:
with open(filename, "r") as reader:
return File(reader.read(), ctime(os_path.getmtime(filename)))
return File(reader.read(), get_post_cdate(filename))
def get_post_cdate(filename: str) -> str:
return ctime(os_path.getmtime(filename))
def delete_post(filename: str) -> bool: