My personal website, in gleam+lustre!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

We may be doing well :3

+9 -5
+3
assets/robots.txt
··· 1 + User-agent: * 2 + Disallow: / 3 +
-1
assets/svg/menu.svg
··· 1 1 <svg 2 - class="h-5 w-5" 3 2 fill="none" 4 3 stroke="currentColor" 5 4 viewBox="0 0 24 24"
+4 -4
gleam.toml
··· 30 30 minify = true 31 31 32 32 [tools.lustre.html] 33 - scripts = [ 34 - # { src = "https://unpkg.com/website-carbon-badges@1.1.3/b.min.js", defer = true }, 35 - ] 36 33 links = [ 37 - { rel = "preconnect", href = "https://fontlay.com", crossorigin = "" }, 34 + { rel = "preconnect", href = "https://fontlay.com" }, 38 35 { rel = "shortcut icon", href = "/strawmelonjuice.svg", type = "image/x-icon" }, 39 36 { rel = "alternate", href = "/rss.xml", type = "application/rss+xml", title = "Site-wide RSS Feed" }, 40 37 { rel = "alternate", href = "/atom.xml", type = "application/atom+xml", title = "Site-wide ATOM Feed" }, 41 38 { rel = "me", href = "https://pony.social/@strawmelonjuice" }, 39 + { rel = "preload", href = "/styles.css", as = "style" }, 42 40 ] 41 + scripts = [] 42 + # { src = "https://unpkg.com/website-carbon-badges@1.1.3/b.min.js", defer = true }, 43 43 stylesheets = [ 44 44 { href = "/styles.css" }, 45 45 { href = "https://fontlay.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lilex:ital,wght@0,100..700;1,100..700&display=swap" },
+2
src/homepage.gleam
··· 1623 1623 [ 1624 1624 attribute.class("btn btn-ghost btn-circle"), 1625 1625 attribute.role("button"), 1626 + attribute.aria_label("Open menu"), 1626 1627 attribute("tabindex", "0"), 1627 1628 ], 1628 1629 [ 1629 1630 html.img([ 1631 + attribute.alt("menu icon"), 1630 1632 attribute.class("h-5 w-5"), 1631 1633 attribute.src("/svg/menu.svg"), 1632 1634 ]),