mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-09-27 03:25:56 +08:00
19 lines
324 B
HTML
19 lines
324 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{.Title}}</title>
|
|
{{template "css" .}}
|
|
</head>
|
|
<body>
|
|
{{template "header" .}}
|
|
<div id="content">
|
|
<pre>
|
|
{{.TextBody}}
|
|
</pre>
|
|
</div>
|
|
{{template "script" .}}
|
|
<script>viewer(new URL(window.location.href), null);</script>
|
|
</body>
|
|
</html>
|