11 lines
434 B
HTML
11 lines
434 B
HTML
|
{{ define "main" }}
|
||
|
<div style="align-content: center; justify-content: center; align-items: baseline">
|
||
|
<p class="title-text">
|
||
|
<img src={{ .Site.Params.logo }} class="title-image" onclick="location.href='{{ .Site.Params.titleLink }}'" type="button">
|
||
|
{{ .Title }}</p>
|
||
|
<p class="subtitle">{{ .Site.Params.subtitle | markdownify }}</p>
|
||
|
{{ partial "nav.html" . }}
|
||
|
</div>
|
||
|
{{ partial "welcome.html" }}
|
||
|
{{ end }}
|