ariadne.space/layouts/_default/baseof.html

23 lines
573 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ block "title" . }}
{{ .Site.Title }}
{{ end }}</title>
<link rel="stylesheet" href="/styles.css">
<link rel="stylesheet" href="/syntax.css">
<link rel="alternate" type="application/rss+xml" href="/index.xml">
<link rel="alternate" type="application/atom+xml" href="/atom.xml">
</head>
<body>
<nav id="sidebar">
{{ partial "sidebar.html" . }}
</nav>
<main aria-role="main">
{{ block "main" . }}
{{ end }}
</main>
</body>
</html>