aboutsummaryrefslogtreecommitdiff
path: root/preprocessor/url.sh
blob: 1c04b90988906f8cc84088a6ebf3ae4260fcbfa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
url=$1

if [[ "$url" =~ .*"..".* ]]; then
    url="/"
fi

if [ -f "./public/$url/index.bhtml" ]; then
    url="/$url/index.bhtml"
fi

echo $url