Merge pull request #47 from malteada/master

feat: Return to home on click page title
This commit is contained in:
Ben Balter 2019-11-05 16:45:01 -05:00 committed by GitHub
commit 7baf14d73e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -13,7 +13,9 @@
<header>
<div class="container">
<h1>{{ site.title | default: site.github.repository_name }}</h1>
<a id="a-title" href="{{ '/' | relative_url }}">
<h1>{{ site.title | default: site.github.repository_name }}</h1>
</a>
<h2>{{ site.description | default: site.github.project_tagline }}</h2>
<section id="downloads">

View File

@ -251,3 +251,7 @@ a {
.cf {
zoom:1;
}
#a-title {
text-decoration: none;
}