about summary refs log tree commit diff stats
path: root/themes
diff options
context:
space:
mode:
authorAlan Pearce2023-06-21 13:14:05 +0200
committerAlan Pearce2023-06-21 13:14:05 +0200
commitf8acc923560a4b3fde660256ae7b7a6f9688b306 (patch)
tree8740f254e851f05f3984fadc837a9d557db0769c /themes
parent3d3ac02cf53695838eb149cc5c3a395fa4077db8 (diff)
downloadwebsite-f8acc923560a4b3fde660256ae7b7a6f9688b306.tar.lz
website-f8acc923560a4b3fde660256ae7b7a6f9688b306.tar.zst
website-f8acc923560a4b3fde660256ae7b7a6f9688b306.zip
Move header link inside heading
Diffstat (limited to 'themes')
-rw-r--r--themes/bear/templates/header.html8
-rw-r--r--themes/bear/templates/style.html1
2 files changed, 6 insertions, 3 deletions
diff --git a/themes/bear/templates/header.html b/themes/bear/templates/header.html
index c1d3c3e..90d5a7e 100644
--- a/themes/bear/templates/header.html
+++ b/themes/bear/templates/header.html
@@ -1,7 +1,9 @@
 <header>
-  <a href="{{ config.base_url }}" class="title">
-    <h2>{{ config.title }}</h2>
-  </a>
+  <h2>
+    <a href="{{ config.base_url }}" class="title">
+      {{ config.title }}
+    </a>
+  </h2>
   <nav>
     {% include "nav.html" %}
   </nav>
diff --git a/themes/bear/templates/style.html b/themes/bear/templates/style.html
index 4744695..b242914 100644
--- a/themes/bear/templates/style.html
+++ b/themes/bear/templates/style.html
@@ -28,6 +28,7 @@
   }
 
   .title {
+    color: #222;
     text-decoration: none;
     border: 0;
   }