clavitor/clavitor.com/account/templates/base.tmpl

24 lines
858 B
Cheetah

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{.Title}}</title>
<meta name="description" content="{{.Desc}}">
<meta name="robots" content="noindex, nofollow">
<link rel="icon" href="{{.Base}}/favicon.svg" type="image/svg+xml">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;550;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{.Base}}/account.css">
</head>
<body>
<div class="ambient"></div>
<div class="gridlines"></div>
<div class="page">
{{template "page" .}}
</div>
{{template "scripts" .}}
</body>
</html>