wesh.sh 216 B

1234567891011121314
  1. #!/bin/sh
  2. . ./conf.sh
  3. . ./lib.sh
  4. . ./corehandlers.sh
  5. cd ..
  6. [ -f "$SITE_DIR/_wesh/config" ] && . "$SITE_DIR/_wesh/config"
  7. if [ -f "./$REQUEST_PATH" ]; then
  8. static_file "./$REQUEST_PATH"
  9. else
  10. render_page
  11. fi