26 lines
686 B
HTML
26 lines
686 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">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{ block "opengraph" . }}
|
|
{{ end }}
|
|
</head>
|
|
<body>
|
|
<nav id="sidebar">
|
|
{{ partial "sidebar.html" . }}
|
|
</nav>
|
|
<main aria-role="main">
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
</main>
|
|
</body>
|
|
</html>
|