diff options
| author | Julie Lala <jules@okfoc.us> | 2015-04-09 05:52:23 -0400 |
|---|---|---|
| committer | Julie Lala <jules@okfoc.us> | 2015-04-09 05:52:23 -0400 |
| commit | c65de768ccd5111567732854ca4ce50dbeebd6ea (patch) | |
| tree | 82a2d2bac9a659b125fadf0507a7644fe1f1e0d3 /site/index.js | |
| parent | 575319aa386f2074d51dc847a90a62295a5ad233 (diff) | |
get running
Diffstat (limited to 'site/index.js')
| -rw-r--r-- | site/index.js | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/site/index.js b/site/index.js index 9be7cd5..c7638fa 100644 --- a/site/index.js +++ b/site/index.js @@ -46,7 +46,7 @@ var app = okcms.createApp({ data: [ {type: 'retail', query: '*'}, {type: 'advertising', query: '*'}, - {type: 'experiental', query: '*'}, + {type: 'experiential', query: '*'}, {type: 'content', query: '*'}, {type: 'page', query: '*'} ] @@ -58,16 +58,20 @@ var app = okcms.createApp({ data: {type: 'page', query: 'contact'} }, '/retail/:id': { - data: {type: 'retail', query: ':id'} - } + data: {type: 'retail', query: ':id'}, + template: 'project' + }, '/advertising/:id': { - data: {type: 'advertising', query: ':id'} - } - '/experiental/:id': { - data: {type: 'experiental', query: ':id'} - } + data: {type: 'advertising', query: ':id'}, + template: 'project' + }, + '/experiential/:id': { + data: {type: 'experiential', query: ':id'}, + template: 'project' + }, '/content/:id': { - data: {type: 'content', query: ':id'} + data: {type: 'content', query: ':id'}, + template: 'project' } } |
