23 lines
790 B
HTML
23 lines
790 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>{{ .Site.Title }}</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<span style="font-size:1.7rem;cursor:pointer;margin-right:18px;">☰</span>
|
|
<h1 style="margin:0;font-size:2rem;font-weight:500;">My Favorite Stuff</h1>
|
|
</header>
|
|
<main>
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
<div class="fab">+</div>
|
|
</body>
|
|
</html>
|