sophuwu.site > myweb
uwuwuski
sophuwu sophie@skisiel.com
Fri, 19 Jul 2024 16:52:43 +0200
commit

9b5ff48e7d376f81e0403ae4cf00b524fa2f980d

parent

39b36e63f277bb0d09a14c8146fa54d100fb3c1e

3 files changed, 17 insertions(+), 7 deletions(-)

jump to
M config.yamlconfig.yaml

@@ -4,7 +4,7 @@ IP: "127.0.0.1"

Url: "https://skisiel.com" Paths: - Static: "./static" + Static: "../githttp/static" Templates: "./templates" Media: "./media"
M templates/head.htmltemplates/head.html

@@ -1,6 +1,11 @@

{{ define "head" }} <head> - <link rel="stylesheet" type="text/css" href="/static/style.css"> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="stylesheet" href="/static/normalize.css" type="text/css"> + <link rel="stylesheet" href="/static/style.css" type="text/css"> + <link rel="stylesheet" href="/static/style_dark.css" type="text/css"> + <link rel="stylesheet" href="/static/icons.css" type="text/css"> <link rel="icon" type="image/ico" href="/static/favicon.ico"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{{ .Title }}</title>
M templates/header.htmltemplates/header.html

@@ -1,9 +1,14 @@

{{ define "header" }} <header> - <h1>Sophie Kisiel</h1> - <a href="/"><button>Home</button></a> - <a href="/blog/"><button>Blog</button></a> - <a href="//sophuwu.site/"><button>Git</button></a> - <a href="/animations/"><button>Animations</button></a> + <div> + <a class="favicon" href="/">&nbsp;</a> + <h2 style="font-size: 2cap;">Sophie Kisiel</h2> + <a href="/" style="margin-left: auto;"><button class="headbutt"><label class="fa fa-home"></label> Home</button></a> + <a href="/blog/"><button class="headbutt"><label class="fa fa-book"></label> Blog</button></a> + <a href="//sophuwu.site/"><button class="headbutt"><label class="fa fa-code-fork"></label> Git Repo</button></a> + <a href="/animations/"><button class="headbutt"><label class="fa fa-image"></label> Animations</button></a> + </div> + + <hr style="margin-top: 5px;"> </header> {{ end }}