summaryrefslogtreecommitdiff
path: root/index.lua
blob: 8fb25b9bc7e938e4ac4259126665f65f4442d4b2 (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
35
36
37
38
39
40
41
42
43
44
45
46
require"h"

head = mkhead("ubq323's website",true)

function l(text,path) return li(a(text,path or "/"..text)) end
mainsect = section {
	p [[hello, i am rebecca, and this is my website. on it are some things:]];
	ul {
		l(",flappy fly bird man?","/ffbm");
		l "morrison";
		l("apioforum","//a.gh0.pw");
		l("ubq323 git","//g.gh0.pw");
		l("some music","//ubq323.bandcamp.com");
		l("questions","/questions/questions.html");
		l "garden";
	};
}



contact = section {
	h2 "contact";

	p "i enjoy it when people contact me. if you are cool, please contact me.";
	ul {
		li [[email: ubq323@ubq323.website]],
		li [[xmpp: ubq323@ubq323.website]],
		li { [[irc: ubq323 on ]], a("apionet","irc:ubq323.website/#a") },
		li [[discord (if you must): ubq323]],
		li { 'the ', a('questions page','/questions/questions.html') },
	},
}
footer = safe [[
<hr>

<!-- GEORGE -->
<iframe height="50" src="https://george.gh0.pw/embed.cgi?ubq323" style="border:none;width:100%"></iframe>
<!-- johnvertisements -->
<iframe src="https://john.mondecitronne.com/embed?ref=ubq323.website" style="margin-left:auto;display:block;margin-right:auto;max-width:732px;width:100%;height:12.367%;border:none;"></iframe>
<script></script>
]]


print(html{
	head, site_top, mainsect, contact, footer
})