13 lines
381 B
HTML
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" . }}
|