Skip to content

Commit ab54513

Browse files
committed
Make title link to homepage
1 parent 761fdd9 commit ab54513

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Diff for: _layouts/default.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@
5050
<article id='article' class='page-{{page.title|downcase}}'>
5151
<div class="container">
5252
<div class="page-header">
53-
<h1>{{ site.title }}</h1>
53+
<h1>
54+
<a href="{{ site.url }}">{{ site.title }}</a>
55+
</h1>
5456
<h2>{{ site.description }}</h2>
5557
</div>
5658

Diff for: css/site.scss

+5
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@
66

77
article.page- h1 {
88
font-size: 4em;
9+
10+
a {
11+
color: inherit;
12+
text-decoration: none;
13+
}
914
}

0 commit comments

Comments
 (0)