17 lines
236 B
Plaintext
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>
|
||
|
|
||
|
}
|