mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-24 13:10:18 +01:00
Use site title in header, not context's title
Depending on the context the ".Title" could be the post or page's title, but here we actually want the site's title.
This commit is contained in:
parent
d0fa547c10
commit
4043f1b1f4
@ -1,6 +1,6 @@
|
|||||||
<div class="blog-header">
|
<div class="blog-header">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1 class="blog-title">{{ .Title | safeHTML }}</h1>
|
<h1 class="blog-title">{{ .Site.Title | safeHTML }}</h1>
|
||||||
{{ if .Site.Params.description }}<p class="lead blog-description">{{ .Site.Params.description | safeHTML }}</p>{{ end }}
|
{{ if .Site.Params.description }}<p class="lead blog-description">{{ .Site.Params.description | safeHTML }}</p>{{ end }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user