1
0
forked from x/ContextOS
2018-05-31 22:07:19 +08:00

37 lines
487 B
HTML

{{define "head"}}
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<style>
legend {
font-size:16px;
font-weight:bold;
}
th {
cursor:pointer;
background-color:lightgray;
}
code {
font-size:14px;
}
</style>
</head>
<body>
{{end}}
{{define "message"}}
<fieldset class="message"><legend>message</legend>
<pre>{{meta .message}}</pre>
</fieldset>
<style>
.message {
color:red;
}
</style>
{{end}}
{{define "tail"}}
<script src="library/context.js"></script>
</body>
{{end}}