website

Sources for my personal website
Log | Files | Refs | README

commit 1656ddb4fdf57954fd4edbbe8540d646647c1917
parent e818aa0fc325f9a77bb144be423e996621359aaa
Author: Sven Mรถller <sven-moeller@outlook.de>
Date:   Sat,  1 Jan 2022 20:10:55 +0100

Change favicon, clean template

Diffstat:
Dstatic/favicon.ico | 0
Mstatic/style.css | 3++-
Mtemplate.html | 21+++++++++------------
3 files changed, 11 insertions(+), 13 deletions(-)

diff --git a/static/favicon.ico b/static/favicon.ico Binary files differ. diff --git a/static/style.css b/static/style.css @@ -2,8 +2,9 @@ body { max-width: 800px ; margin: 16px auto ; padding: 0 16px ; - font-family: sans-serif; + font-family: sans-serif; } + a[href^="https://"]:not([href*="svenmoeller.xyz"]):after { content: " " url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAVklEQVR4Xn3PgQkAMQhDUXfqTu7kTtkpd5RA8AInfArtQ2iRXFWT2QedAfttj2FsPIOE1eCOlEuoWWjgzYaB/IkeGOrxXhqB+uA9Bfcm0lAZuh+YIeAD+cAqSz4kCMUAAAAASUVORK5CYII=); } diff --git a/template.html b/template.html @@ -1,15 +1,12 @@ <!DOCTYPE html> <html lang="en"> - <head> - <title>$title$</title> - <meta charset=UTF-8> - <link rel=stylesheet href=style.css> - <meta name="viewport" content="width=device-width, initial-scale=1"> - </head> - <body> - $body$ - <footer> - ๐Ÿ <a href="https://svenmoeller.xyz">svenmoeller.xyz</a> <span style="white-space: nowrap;">๐Ÿ“ง<a href="mailto:sven-moeller@outlook.de">sven-moeller@outlook.de</a></span> - </footer> - </body> +<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>๐ŸŒ</text></svg>"> +<title>$title$</title> +<meta charset=UTF-8> +<link rel=stylesheet href=style.css> +<meta name="viewport" content="width=device-width, initial-scale=1"> +$body$ +<footer> +๐Ÿ <a href="https://svenmoeller.xyz">svenmoeller.xyz</a> <span style="white-space: nowrap;">๐Ÿ“ง<a href="mailto:sven-moeller@outlook.de">sven-moeller@outlook.de</a></span> +</footer> </html>