Compare commits

..

3 Commits

Author SHA1 Message Date
veclav talica
6a5ee8f800 add logo to main page 2024-02-23 23:19:21 +05:00
veclav talica
d2cfd9fd83 fix mixin_tag newlines 2024-02-23 23:18:57 +05:00
veclav talica
af76490365 center images 2024-02-23 23:18:15 +05:00
4 changed files with 10 additions and 1 deletions

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

Binary file not shown.

View File

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

View File

@ -58,6 +58,7 @@ 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}>
""" """