Files
website/baseTemplates/templates/base.tmpl
prettysunflower 18134efa99
Some checks failed
Build Docker images for static folder / acls (push) Failing after 46s
Build Docker images / acls (push) Successful in 1m5s
chore: Changed link to bookmarks from Linkding to Karakeep
Signed-off-by: prettysunflower <me@prettysunflower.moe>
2025-08-05 10:21:34 -04:00

36 lines
1.1 KiB
Cheetah

{{define "base"}}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/static/css/style.css?version=2">
<title></title>
</head>
<body class="{{ template "bodyClass" . }}">
<header>
<nav>
<div>
<div>
<a href="/">
<img src="https://kakigoori.dev/5819581e-42b9-41a7-bab6-c3f99de30934/auto" alt="Avatar of prettysunflower">
</a>
<a href="/">
prettysunflower
</a>
</div>
<div>
<a href="/blog/">Blog</a>
<a href="/regio43/">regio43</a>
<a href="https://git.prettysunflower.moe/prettysunflower/">Git</a>
<a href="https://karakeep.prettysunflower.moe/public/lists/b1nui2h65hi7sn17r5vtsjum">Bookmarks</a>
<a href="/keys">Public keys</a>
</div>
</div>
</nav>
</header>
{{ template "content" . }}
</body>
</html>
{{ end }}