include Javascript
The includeJS(String) template call allows you to include a javascript file in the resulting page. Javascript files can be included in your project by placing them in a javascript/ directory in the project root.
Example 1:
define page root() {
includeJS("sdmenu.js")
}
It is also possible to include a Javascript file using an absolute URL.
Example 2:
define page root() {
includeJS("http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js")
}
