Hadi
08/08/2021, 8:08 AMroute("") {
    route("/{year}/{month?}/{day?}") {
        get {
            call.respondHtml{
                title { +"title" }
                body {
                    a (href = "$baseUrl/somepath") { +"link to top level" }
                }
            }
        }
    }
}href="/somepath"Aleksei Tirman [JB]
08/09/2021, 9:58 AMHadi
08/09/2021, 1:03 PMroute("someEndpoint")a (href="/test")/someEndpoint/test/testa (href="../test")/test/year/test/year/month/testHadi
08/09/2021, 1:04 PMa (href=$baseUrl/test)/testAleksei Tirman [JB]
08/09/2021, 3:45 PMhref = "/test"<protocol://host>:port/testHadi
08/09/2021, 5:51 PMinstall(IgnoreTrailingSlash)/href