28 lines
768 B
HTML
28 lines
768 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
||
|
<link rel="stylesheet" href="/static/style.css">
|
||
|
<title>{{ if .EntryTitle }}{{ .EntryTitle }} - {{ end }}{{ .Title }}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<label class="sidebar-switch">
|
||
|
<div class="sidebar-symbol">≡</div>
|
||
|
<input type="checkbox" {{- if not .Entry }}checked{{ end }}>
|
||
|
<div class="sidebar">
|
||
|
{{- range .TOC -}}
|
||
|
<div><a href="{{ . }}">{{ . }}</a></div>
|
||
|
{{- end -}}
|
||
|
</div>
|
||
|
</label>
|
||
|
<div class="main">
|
||
|
<h1>{{ .EntryTitle }}</h1>
|
||
|
<div class="content">
|
||
|
{{ .Entry }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|