<!-- Main jumbotron for a primary marketing message or call to action -->
<divclass="jumbotron">
<h1>{{ .Site.Title }}</h1>
<p>{{ if .Site.Params.description }}{{ .Site.Params.description }}{{ else }}You can customize this text by params "description" in your <code>config.toml</code>.{{ end }}</p>
<p>{{ with .Site.Params.description }}{{ . }}{{ else }}You can customize this text by params "description" in your <code>config.toml</code>.{{ end }}</p>
</div>
</div>
...
...
@@ -41,11 +41,12 @@
</div>
</div>
{{ if .Site.Params.withSitePosts }}
{{ $title := .Site.Title }}
{{ with .Site.Params.withSitePosts }}
<hr/>
<divclass="row doc-main text-center">
<ahref="{{ $baseUrl }}/post">See posts for {{ .Site.Title }}</a>
<ahref="{{ $baseUrl }}/post">See posts for {{ $title }}</a>