mirror of
https://github.com/agresdominik/website.git
synced 2026-04-21 18:05:53 +00:00
25 lines
475 B
HTML
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>
|