mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-09-26 23:05:55 +08:00
18 lines
334 B
HTML
18 lines
334 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{.Title}}</title>
|
|
{{template "css" .}}
|
|
{{template "graph_css" .}}
|
|
</head>
|
|
<body>
|
|
{{template "header" .}}
|
|
<div id="graph">
|
|
{{.HTMLBody}}
|
|
</div>
|
|
{{template "script" .}}
|
|
<script>viewer(new URL(window.location.href), {{.Nodes}});</script>
|
|
</body>
|
|
</html>
|