diff --git a/config/_default/menu.yaml b/config/_default/menu.yaml index 7f44cde..717cf31 100644 --- a/config/_default/menu.yaml +++ b/config/_default/menu.yaml @@ -11,3 +11,29 @@ main: name: About url: /about/ weight: 30 +social: + - identifier: twitter + name: Twitter + url: https://twitter.com/erynofwales + weight: 10 + params: + shortName: tw + - identifier: github + name: Github + url: https://github.com/erynofwales + weight: 20 + params: + shortName: gh + - identifier: instagram + name: Instagram + url: https://instagram.com/erynofwales + weight: 30 + params: + shortName: ig + - identifier: feed + name: Feed + url: /feed.atom + weight: 40 + params: + shortName: feed + targetBlank: false diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 1e9c4aa..03fc196 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,29 +1,27 @@ +{{- $url := .RelPermalink -}}
-

- Eryn Wells -

+

+ Eryn Wells +

- {{ $url := .RelPermalink }} - {{ with site.Menus.main }} -
diff --git a/static/styles/root.css b/static/styles/root.css index 4e6ad95..1f7f021 100644 --- a/static/styles/root.css +++ b/static/styles/root.css @@ -63,7 +63,7 @@ --twitter-icon: url(/icons/twitter.svg); --github-icon: url(/icons/github.svg); --instagram-icon: url(/icons/instagram.svg); - --rss-icon: url(/icons/rss.svg); + --feed-icon: url(/icons/rss.svg); } @media (prefers-color-scheme: dark) { :root { @@ -89,7 +89,7 @@ --twitter-icon: url(/icons/twitter-dark.svg); --github-icon: url(/icons/github-dark.svg); --instagram-icon: url(/icons/instagram-dark.svg); - --rss-icon: url(/icons/rss-dark.svg); + --feed-icon: url(/icons/rss-dark.svg); } }