initial commit: vibe coded compiler

This commit is contained in:
2025-08-10 17:17:01 -07:00
commit 5c1a76f223
15 changed files with 412 additions and 0 deletions

14
templates/base.gohtml Normal file
View File

@@ -0,0 +1,14 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ .Title }}</title>
<link rel="stylesheet" href="../css/style.css" />
</head>
<body {{ .PageSizeAttr }}>
<div id="page">{{ .Content }}</div>
</body>
</html>