Compare commits

..

No commits in common. "6a5ee8f8002832c81d9d76f9fed45b3b3341f8b9" and "78b50d27c2e7f0c9ec4d33b3900ec44c6eab2a8d" have entirely different histories.

4 changed files with 1 additions and 10 deletions

BIN
html/logo.png (Stored with Git LFS)

Binary file not shown.

View File

@ -106,7 +106,4 @@ img {
max-width: 100%; max-width: 100%;
height: auto; height: auto;
width: auto; width: auto;
margin-left: auto;
margin-right: auto;
display: block;
} }

View File

@ -20,9 +20,7 @@ HTML header: <meta name="viewport" content="width=device-width, initial-scale
""" """
page = f"""![](/logo.png) page = f"""Personal blog of one {choice(ADJECTIVES)} Veclav Talica.
Personal blog of one {choice(ADJECTIVES)} Veclav Talica.
### Articles ### ### Articles ###

View File

@ -58,7 +58,6 @@ WEEKDAYS = {
def mixin_tag(content: str, tag: str) -> str: def mixin_tag(content: str, tag: str) -> str:
return f"""<{tag}> return f"""<{tag}>
{content}</{tag}> {content}</{tag}>
""" """