update @ Sat 12 Mar 23:54:55 EET 2022

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2022-03-12 23:54:55 +02:00
parent 2c3bd6b87f
commit 5a4c5c1d6a
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
2 changed files with 5 additions and 5 deletions

View file

@ -43,11 +43,11 @@ a {
text-shadow: 0px 0px 6px white;
}
.info-bar {
#info-bar {
text-align: center;
}
.blog-content {
#blog-content {
padding: 0.3em;
}

View file

@ -63,13 +63,13 @@ BLOG_VERSION: int = 1
BLOG_MARKDOWN_TEMPLATE: str = """# %s
<div class="info-bar" aria-hidden="true">
<div id="info-bar" aria-hidden="true">
%s | <a href="%s">back</a> | <a href="/">home</a> | <a href="%s">git</a>
</div>
<hr/>
<div class="blog-content">
<div id="blog-content">
%s
@ -110,7 +110,7 @@ HOME_PAGE_HTML_TEMPLATE: str = f"""<!DOCTYPE html>
</head>
<body>
<h1>My blogs</h1>
<div class="info-bar" aria-hidden="true">
<div id="info-bar" aria-hidden="true">
<p>last blog on: <code>{{lastest_blog_time}}</code> | latest blog: <a href="{{latest_blog_url}}">{{latest_blog_title}}</a> | <a href="{{git_url}}">source code</a></p>
<hr/>
</div>