{{ $pathSplit := splitList "/" .OriginalReq.URL.Path }} {{ $base := last $pathSplit | default "index.html" }} {{ $newBase := trimSuffix (ext $base) $base | printf "%s.gmi" }} {{ $filePath := append (initial $pathSplit) $newBase | join "/" | printf "static%s" }} {{ if not (fileExists $filePath) }}{{ httpError 404 }}{{ end }} TODO Title {{ gemtext (include $filePath) }}