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
App {
    NavBar

    Row {
        DocSidebar

        Router {
            Route(path: "/", page: Home)
            Route(path: "/getting-started", page: GettingStarted)
            Route(path: "/guide", page: Guide)
            Route(path: "/components", page: Components)
            Route(path: "/styling", page: Styling)
            Route(path: "/animation", page: Animation)
            Route(path: "/i18n", page: I18n)
            Route(path: "/ssg", page: Ssg)
            Route(path: "/pdf", page: Pdf)
            Route(path: "/template-engine", page: TemplateEngine)
            Route(path: "/accessibility", page: Accessibility)
            Route(path: "/cli", page: Cli)
            Route(path: "/404", page: NotFound)
        }
    }

    SiteFooter
}