summaryrefslogtreecommitdiff
path: root/garden.lua
diff options
context:
space:
mode:
Diffstat (limited to 'garden.lua')
-rw-r--r--garden.lua34
1 files changed, 34 insertions, 0 deletions
diff --git a/garden.lua b/garden.lua
new file mode 100644
index 0000000..4d0212f
--- /dev/null
+++ b/garden.lua
@@ -0,0 +1,34 @@
+require'h'
+
+local head = mkhead'garden'
+local top = mksmalltopbox('garden')
+local bread = bcrumb{
+ {'< home','/'},
+ {'garden'}
+}
+
+local sect = section {
+ h2'garden',
+ p[[
+garden is a multiplayer paint program. the single canvas is infinite and persistent.]],
+ img({src="https://ubq323.website/files/uiQWlN0R.png"},''),
+ p[[you can:]],
+ ul{
+ li{ a("download it","/files/garden"), [[ (linux x86 binary, needs sdl2) ]] },
+ li{ [[build ]], a("the source code","//g.gh0.pw/garden"), " yourself." },
+ },
+}
+
+local ch = section {
+ h2'changelog',
+ dl{
+ dt[[v1.0.0 (2024-04-29):]],
+ dd[[initial release]],
+ },
+}
+
+
+
+print(html{
+ head, top, bread, sect, ch
+})