37 lines
785 B
HTML
37 lines
785 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ .Site.LanguageCode }}">
|
||
|
|
||
|
<head>
|
||
|
<title>
|
||
|
{{ i18n "home" }} | {{ .Site.Params.author.name }}
|
||
|
</title>
|
||
|
|
||
|
{{ partial "head.html" . }}
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div class="flexWrapper">
|
||
|
{{ partial "header.html" . }}
|
||
|
|
||
|
<div class="content vertical">
|
||
|
<main class="main">
|
||
|
<div class="indexWrapper">
|
||
|
<div>
|
||
|
<h1 class="indexHeader">{{ .Site.Params.author.name }}</h1>
|
||
|
</div>
|
||
|
{{ if isset .Site.Params "social" }}
|
||
|
{{ partial "social.html" . }}
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
</main>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
{{ partial "footer.html" . }}
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|