Move header link inside heading
Alan Pearce alan@alanpearce.eu
Wed, 21 Jun 2023 13:14:05 +0200
2 files changed, 6 insertions(+), 3 deletions(-)
M themes/bear/templates/header.html → 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>
M themes/bear/templates/style.html → themes/bear/templates/style.html
@@ -28,6 +28,7 @@ color: #3273dc; } .title { + color: #222; text-decoration: none; border: 0; }