Started building out the site.

This commit is contained in:
Leon Mika 2025-01-18 16:02:35 +11:00
parent f119683b57
commit b62458d7cd
14 changed files with 368 additions and 31 deletions

25
cmd/gendocs/frame.tmpl Normal file
View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>
<h1>UCL</h1>
<nav>
<a href="/">Home</a>
<a href="/core/">Core</a>
<a href="/playground/">Playground</a>
</nav>
</header>
<main>
{{.Body}}
</main>
<footer>
<p>By Leon Mika. Terminal control using <a href="https://xtermjs.org">xterm.js</a></p>
</footer>
</body>
</html>