all repos — homestead @ 6342159884acf3eab42f0d50db90bc0c9f56fc8b

Code for my website

Move header link inside heading

Alan Pearce
commit

6342159884acf3eab42f0d50db90bc0c9f56fc8b

parent

b56fe3e01fd31355e9b6ebd7b6df0ea9646c923f

2 files changed, 6 insertions(+), 3 deletions(-)

jump to
M themes/bear/templates/header.htmlthemes/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.htmlthemes/bear/templates/style.html
@@ -28,6 +28,7 @@ color: #3273dc;
} .title { + color: #222; text-decoration: none; border: 0; }