13 lines
No EOL
494 B
HTML
13 lines
No EOL
494 B
HTML
{{ $background_path := "default-background.png" }}
|
|
{{ with .Site.Params.cover }}
|
|
{{ $background_path = . }}
|
|
{{ end }}
|
|
{{ if resources.Get $background_path }}
|
|
{{ $background_path = (resources.Get $background_path).Permalink }}
|
|
{{ end }}
|
|
<div class="jumbotron" style="background-image: url({{ $background_path }});">
|
|
<div class="container">
|
|
<div class="site-title">{{ .Site.Params.title }}</div>
|
|
<p class="signature">{{ .Site.Params.signature }}</p>
|
|
</div>
|
|
</div> |