update @ Sun 8 May 23:37:41 EEST 2022

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2022-05-08 23:37:41 +03:00
parent f60c283f6a
commit c04453f680
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: A50D5B4B599AF8A2

View file

@ -115,7 +115,7 @@ HOME_PAGE_HTML_TEMPLATE: str = f"""<!DOCTYPE html>
<body> <body>
<h1>My blogs</h1> <h1>My blogs</h1>
<div id="info-bar" aria-hidden="true"> <div id="info-bar" aria-hidden="true">
<p>last blog on: <code>{{lastest_blog_time}}</code> | \ <p>last blog on: <code>{{lastest_blog_time}} GMT</code> | \
latest blog: <a href="{{latest_blog_url}}">{{latest_blog_title}}</a> | \ latest blog: <a href="{{latest_blog_url}}">{{latest_blog_title}}</a> | \
<a href="{{git_url}}">git</a></p> <a href="{{git_url}}">git</a></p>
<hr/> <hr/>
@ -310,7 +310,7 @@ def build(config: Dict) -> Tuple[int, Dict]:
title=config["page-title"], title=config["page-title"],
theme_type=config["colourscheme-type"], theme_type=config["colourscheme-type"],
keywords=blog_meta["keywords"], keywords=blog_meta["keywords"],
blog_description=f"Blog on {blog_time} -- {blog_title}", blog_description=f"Blog on {blog_time} GMT -- {blog_title}",
blog=blog_base_html, blog=blog_base_html,
) )