blob: 6476393d22774a55d8095270e7623fa525d890f0 (
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
|
$page =
$cgi.h2 { "Wishlists" } +
$cgi.h3 { "Amazon" } +
$cgi.ul {
$cgi.li { $cgi.a(href: "https://www.amazon.co.uk/hz/wishlist/ls/3SB878GWKV1OG", target: "_blank") { "Books" } } +
$cgi.li { $cgi.a(href: "https://www.amazon.co.uk/hz/wishlist/ls/2N0PIE381SAVM", target: "_blank") { "Board Games" } } +
$cgi.li { $cgi.a(href: "https://www.amazon.co.uk/hz/wishlist/ls/3HVX4XFFH7TFR", target: "_blank") { "Misc" } }
} +
$cgi.h3 { "DriveThruRPG" } +
$cgi.ul {
$cgi.li { $cgi.a(href: "https://www.drivethrurpg.com/wishlist_public.php?public_id=3288195&list_id=3986366", target: "_blank") { "Roleplaying Games" } }
} +
$cgi.h3 { "Master of Malt" } +
$cgi.ul {
$cgi.li { $cgi.a(href: "https://www.masterofmalt.com/lists/buy-niuan-paque/", target: "_blank") { "Whisky" } } +
$cgi.li { $cgi.a(href: "https://www.masterofmalt.com/lists/denis-cheet-glynn/", target: "_blank") { "Not Whisky" } }
} +
$cgi.h3 { "Steam" } +
$cgi.ul {
$cgi.li { $cgi.a(href: "https://store.steampowered.com/wishlist/profiles/76561197996305593/#sort=order&ex_earlyaccess=1&ex_prerelease=1", target: "_blank") { "Video Games" } }
} +
$cgi.h2 { "Things" } +
$cgi.ul {
$cgi.li { $cgi.a(href: "https://www.hamradiostore.co.uk/mrq800-triband-6-2-70-mobile-antenna", target: "_blank") { "Moonraker 6/2/70 Whip" } }
}
# vim: set filetype=ruby:
|