Skip to content

Commit

Permalink
Don't color header home link
Browse files Browse the repository at this point in the history
  • Loading branch information
yochem committed Sep 10, 2024
1 parent b6396c6 commit 2eb590d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,10 @@ a[aria-current] {
color: var(--detail-color);
}

h1 a {
h1 a,
h1 a[aria-current] {
text-decoration: none;
color: inherit;
}

ol,
Expand Down
2 changes: 1 addition & 1 deletion layouts/_default/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="{{ default "en" .Params.Language }}" dir="ltr">

<head>
<title>{{ if .Title }}{{ .Title }} | {{ end }}{{ site.Title }}</title>
<title>{{ with .Title }}{{ . }} | {{ end }}{{ site.Title }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<meta name="description" content="Yochem van Rosmalen personal website">
Expand Down

0 comments on commit 2eb590d

Please sign in to comment.