feat: 🎉 nace gorender

This commit is contained in:
2024-08-21 22:39:00 +02:00
commit 58033d8e37
13 changed files with 744 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{{ define "base" }}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>gorender example</title>
</head>
<body>
<h1>Base</h1>
<div>
{{ block "content" . }}{{ end }}
</div>
</body>
</html>
{{ end }}