diff --git a/contents/css/main.css b/contents/css/main.css index e2945e5..62f14bc 100644 --- a/contents/css/main.css +++ b/contents/css/main.css @@ -114,6 +114,10 @@ hr { text-decoration: underline; } +.header a.title:hover { + text-decoration: none; +} + .header .author { font-family: 'Merriweather', serif; font-variant: small-caps; diff --git a/templates/article.jade b/templates/article.jade index 28764e2..29f4ebf 100644 --- a/templates/article.jade +++ b/templates/article.jade @@ -11,7 +11,7 @@ block header include author a(href=locals.url) img(src="/img/logo.png", alt="", srcset="" height="64") - a(href=locals.home) + a(href=locals.home, class="title") h1= page.title p.author | #{ 'Written by ' } diff --git a/templates/layout.jade b/templates/layout.jade index e272637..ff801e5 100644 --- a/templates/layout.jade +++ b/templates/layout.jade @@ -20,9 +20,8 @@ html(lang='en') div.logo a(href=locals.url) img(src="img/logo.png", alt="", srcset="" height="64" style="margin-right: 16px;") - Home h1.h1 - a(href=locals.url)= locals.name + a(href=locals.url, class="title")= locals.name p.description= locals.description p.blerb= locals.blerb div#content