mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-15 08:47:03 +01:00
Alan Orth
4043f1b1f4
Depending on the context the ".Title" could be the post or page's title, but here we actually want the site's title.
7 lines
254 B
HTML
7 lines
254 B
HTML
<div class="blog-header">
|
|
<div class="container">
|
|
<h1 class="blog-title">{{ .Site.Title | safeHTML }}</h1>
|
|
{{ if .Site.Params.description }}<p class="lead blog-description">{{ .Site.Params.description | safeHTML }}</p>{{ end }}
|
|
</div>
|
|
</div>
|