diff options
author | digitalcraftsman <digitalcraftsman@users.noreply.github.com> | 2015-07-13 23:48:38 +0200 |
---|---|---|
committer | digitalcraftsman <digitalcraftsman@users.noreply.github.com> | 2015-07-13 23:48:38 +0200 |
commit | 2bec57881bfbe024d58a2fa77bb5a3ab28ed8ad3 (patch) | |
tree | f80faf391505fc594f3a4a60d2be5ec9e5af1599 /layouts/partials/sidebar.html | |
parent | 2d0f48c7f8ed5c1ef5ee0e8a4c52b309a1a5e648 (diff) | |
parent | c87ec5559f42637dc3663625da99a5d7f1dbf532 (diff) |
Merge pull request #14 from digitalcraftsman/sidebar-link-to-home
Linking the title in the sidebar to home
Diffstat (limited to 'layouts/partials/sidebar.html')
-rw-r--r-- | layouts/partials/sidebar.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index a197429..4bdc33e 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -1,7 +1,7 @@ <div class="sidebar"> <div class="container sidebar-sticky"> <div class="sidebar-about"> - <h1>{{ .Site.Title }}</h1> + <a href="{{ .Site.BaseURL }}"><h1>{{ .Site.Title }}</h1></a> <p class="lead"> {{ with .Site.Params.description }} {{.}} {{ else }}An elegant open source and mobile first theme for <a href="http://hugo.spf13.com">hugo</a> made by <a href="http://twitter.com/mdo">@mdo</a>. Originally made for Jekyll.{{end}} </p> |