chg: replaced ant with gradle
This commit is contained in:
parent
ced560f0c7
commit
7eebeee1d0
615 changed files with 87626 additions and 638 deletions
18
src/dist/apps/welcome/code/Guide/main.hac
vendored
Normal file
18
src/dist/apps/welcome/code/Guide/main.hac
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
// Prepare some response values used by the skins
|
||||
res.data.href = this.href();
|
||||
res.data.root = root.href();
|
||||
|
||||
// Render three nested skins
|
||||
res.data.listtools = this.renderSkinAsString('list.tools');
|
||||
res.data.listintro = this.renderSkinAsString('list.intro');
|
||||
res.data.listwebsite = this.renderSkinAsString('list.website');
|
||||
if (this.parent && this.parent.name) {
|
||||
res.data.title = 'Welcome to Helma - '+ this.parent.name +' - '+ this.name;
|
||||
res.data.content = this.renderSkinAsString( this.parent.name +'.'+ this.name );
|
||||
res.data.body = this.renderSkinAsString( this.parent.name );
|
||||
}
|
||||
if (!res.data.body) {
|
||||
res.data.title = 'Welcome to Helma - Overview';
|
||||
res.data.body = this.renderSkinAsString('overview');
|
||||
}
|
||||
this.renderSkin('page');
|
Loading…
Add table
Add a link
Reference in a new issue