pprofweb/pkg/goroutineinstance/site/layout.templ
a 2e3929c4b3
Some checks failed
commit-tag / commit-tag-image (push) Failing after 59s
noot
2024-10-28 22:24:09 -05:00

17 lines
236 B
Plaintext

package site
templ layout(contents templ.Component) {
<!doctype html>
<html>
<head>
<title>goroutine explorer</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
@contents
</body>
</html>
}