diff options
Diffstat (limited to 'layouts')
| -rw-r--r-- | layouts/_default/single.html | 12 | ||||
| -rw-r--r-- | layouts/partials/header.html | 2 |
2 files changed, 10 insertions, 4 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 3e617ea..1cf2f18 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,10 +1,16 @@ {{ define "main" }} -<header>{{- partial "header.html" . -}}</header> +<header> +<a href="{{ "" | relURL }}" class="title"> + <p class="site-title">{{ .Site.Title }}<p> +</a> +<nav>{{- partial "nav.html" . -}}</nav> + +</header> <article class="h-entry"> -<h2 class="post-title"> +<h1 class="post-title"> <a href="{{ .RelPermalink }}" class="item-link">{{ .Title }}</a> -</h2> +</h1> <div class="e-content">{{ .Content }}</div> </article> diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 1efdd22..e3aed0f 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,4 +1,4 @@ <a href="{{ "" | relURL }}" class="title"> - <h1>{{ .Site.Title }}</h1> + <h1 class="site-title">{{ .Site.Title }}</h1> </a> <nav>{{- partial "nav.html" . -}}</nav> |
