webfluent 0.4.0-alpha

The Web-First Language — compiles to HTML, CSS, JavaScript, and PDF. 50+ built-in components, reactivity, routing, i18n, SSG, and template engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Component SiteFooter () {
    Divider()
    Container {
        Spacer()
        Row(align: center, justify: between) {
            Text(t("footer.built"), muted, small)
            Row(gap: md) {
                Link(to: "/") { Text(t("nav.home"), muted, small) }
                Link(to: "/getting-started") { Text(t("footer.docs"), muted, small) }
            }
        }
        Spacer()
    }
}