Files
minimal-no-third-party/layouts/index.html
2019-11-02 22:29:06 +01:00

13 lines
381 B
HTML

{{ partial "header" . }}
<main>
<div class="intro">
{{ with .Site.Params.profilePic }} <img class="profile" src="{{ . }}"> {{ end }}
<h1>{{ .Site.Title }}</h1>
<h2>{{ markdownify .Site.Params.Description }}</h2>
{{ with .Content }} <div class="homepage-content text-justify">{{ . }}</div> {{ end }}
</div>
</main>
{{ partial "footer" . }}