pprofweb/pkg/goroutineinstance/site/layout.templ

17 lines
236 B
Plaintext
Raw Normal View History

2024-10-29 03:24:09 +00:00
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>
}