1234567891011121314151617 |
- #!/bin/sh
- . ./conf.sh
- . ./lib.sh
- . ./corehandlers.sh
- cd ..
- [ -f "$SITE_DIR/_wesh/config" ] && . "$SITE_DIR/_wesh/config"
- if [ -f "./$REQUEST_PATH" ]; then
- static_file "./$REQUEST_PATH"
- else
- printf "Content-Type: text/html\n"
- printf "\n"
- handler "$(get_lib_file master.tpl)"
- fi
|