summaryrefslogtreecommitdiff
path: root/blog/test-post.lua
blob: c6cbd846df684be923f3145af39d4d1bba10200e (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
require'h'

head = mkhead'reblogcca'



top = header {
	img({id='me',src='/me.png'},''),
	h1 'rebecca blog',
	p [[ there is some text here ]],
}

breadcrumbs = bcrumb {

	{'< home','/'},
	{'rebecca blog','/blog'},
	{'what do i mean by "telephone"'}
}

sect = section {
	h2 'what do i mean by "telephone"';
	p(blorem());
}

print(html{
	head, top, breadcrumbs,  sect,
})