10 lines
408 B
HTML
10 lines
408 B
HTML
{{ define "main" }}
|
|
|
|
{{ $header_image := (resources.Get "img/header.jpg" | fingerprint).Resize "720x" }}
|
|
<header id="index-header" class="d-flex align-items-center image" data-image="{{ $header_image.RelPermalink }}">
|
|
<div class="text-center m-auto text-light">
|
|
<h1 class="display-1">{{ .Site.Params.author_name }}</h1>
|
|
<h2 class="lead">{{ .Content }}</h2>
|
|
</div>
|
|
</header>
|
|
{{ end }}
|