This repository has been archived on 2025-09-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
plaintext-encyclopedia/public/index.html
2024-08-27 11:55:01 +02:00

27 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">&#x2261;</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>