20 lines
537 B
HTML
20 lines
537 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>{{ .Title }}</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/css/hack/hack.css">
|
|
<link rel="stylesheet" type="text/css" href="/static/css/site.css">
|
|
<script type="application/javascript" src="/static/js/jquery.js"></script>
|
|
<script type="application/javascript" src="/static/js/both.js"></script>
|
|
{{template "header" .}}
|
|
</head>
|
|
|
|
<body class="scrollbar">
|
|
<div class="root">
|
|
{{template "body" .}}
|
|
</div>
|
|
</body>
|
|
|
|
</html> |