werc-1.5.0-tweaks

Tweaks for the werc website builder created by the mad architect Uriel
Log | Files | Refs | README

app.rc (165B)


      1 fn hello_init {
      2     if(~ $req_path /hello) {
      3         handler_body_main='hello_body'
      4         pageTitle='Hi title!'
      5     }
      6 }
      7 
      8 fn hello_body {
      9     echo 'Hello world!'
     10 }