summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--assets/css/main.css6
-rw-r--r--layouts/partials/header.html4
2 files changed, 8 insertions, 2 deletions
diff --git a/assets/css/main.css b/assets/css/main.css
index b08eb15..1675d41 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -141,6 +141,10 @@ hr {
margin-top: 0;
}
+.header-title a {
+ text-decoration: none;
+}
+
/* Footer */
footer {
@@ -523,4 +527,4 @@ blockquote {
blockquote p {
margin-left: 1rem;
margin-right: 1rem;
-} \ No newline at end of file
+}
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index bd17f38..1d8301e 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -4,7 +4,9 @@
{{ if or (not (.Param "hideHeader")) .IsHome }}
- <h1 class="header-title">{{ site.Title }}</h1>
+ <h1 class="header-title">
+ <a href="{{ site.BaseURL }}">{{ site.Title }}</a>
+ </h1>
<div class="flex">
{{ $currentPage := . }}