Files
website/blog/layouts/baseof.html
T
2025-10-28 18:35:52 +01:00

25 lines
475 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://rsms.me/">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<link rel="stylesheet" href="/css/style.css">
<meta charset="UTF-8">
<title> {{ .Site.Params.browserTitle }} :: {{ .Title }} </title>
</head>
<body>
{{ partial "topbar.html" . }}
<main>
{{ block "main" . }}{{ end }}
</main>
{{ partial "bottombar.html" . }}
</body>
</html>