blob: b8e3cbb91a0082dd9c2d146ea579b86072e33d55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ .Title }}</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://cdn.jsdelivr.net/npm/prismjs/themes/prism.css"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/prismjs/prism.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs/plugins/autoloader/prism-autoloader.min.js"></script>
<link rel="stylesheet" href="../themes/tufte.css" />
</head>
<body>
<main class="article">{{ .Content }}</main>
</body>
</html>
|