1<!DOCTYPE html>
2<html>
3<head>
4  <meta charset="utf-8">
5  <title>{{.Title}}</title>
6  {{template "css" .}}
7</head>
8<body>
9  {{template "header" .}}
10  <div id="content">
11    <pre>
12      {{.TextBody}}
13    </pre>
14  </div>
15  {{template "script" .}}
16  <script>viewer(new URL(window.location.href), null);</script>
17</body>
18</html>
19