28 lines
739 B
HTML
28 lines
739 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link rel="preconnect" href="https://rsms.me/">
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
|
{{ $style := resources.Get "style.css" | minify }}
|
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
|
<title>{{ .Site.Title }}</title>
|
|
</head>
|
|
<body>
|
|
<div class="home">
|
|
<header>
|
|
<h1>{{ .Site.Author.name }}</h1>
|
|
<h2>{{ .Site.Author.about }}</h2>
|
|
{{ partial "contact.html" . }}
|
|
</header>
|
|
<div>
|
|
<div class="motto">
|
|
“{{ .Site.Author.motto | safeHTML }}”
|
|
</div>
|
|
{{ partial "links.html" . }}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|