summaryrefslogtreecommitdiff
path: root/garden.lua
blob: 4d0212f6937f63f098c76428f7ea97ed077c4a5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
})