20 lines
851 B
HTML
20 lines
851 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{ template "title" . }}
|
|
<link rel="stylesheet" href="/static/gruvbox.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
</head>
|
|
<body id="top">
|
|
<main>
|
|
<header>
|
|
<p><a href="/">wasmcloud</a> - <a href="docs.wasmcloud.within.website">Documentation</a> - <a href="/support">Support</a> - {{ if .LoggedIn }} <a href="/control/">Control Panel</a> {{ else }} <a href="/login">Login</a> {{ end }}</p>
|
|
</header>
|
|
{{ template "content" . }}
|
|
<footer>
|
|
<p>wasmcloud is by <a href="https://christine.website">Christine Dodrill</a>. For more information, please <a href="https://christine.website/contact">Contact us</a>.</p>
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
</html>
|