Vulcan/packages/telescope-blank/lib/hooks.js
2015-01-01 18:47:11 +09:00

88 lines
No EOL
2.5 KiB
JavaScript

// ------------------------------------------------------------------------------------------- //
// -------------------------------------- Subscriptions -------------------------------------- //
// ------------------------------------------------------------------------------------------- //
// add a subscription to be preloaded before the rest of the app
preloadSubscriptions.push('');
// ------------------------------------------------------------------------------------------- //
// ------------------------------------------- Nav ------------------------------------------- //
// ------------------------------------------------------------------------------------------- //
// add templates to the primary nav bar
primaryNav.push({
template: '',
order: 99
});
// add templates to the secondary nav bar
secondaryNav.push({
template: '',
order: 99
});
// add items to the view menu
viewNav.push({
route: '',
label: '',
description: ''
});
// add items to the admin menu
adminNav.push({
route: '',
label: '',
description: ''
});
// ------------------------------------------------------------------------------------------- //
// ------------------------------------------ Zones ------------------------------------------ //
// ------------------------------------------------------------------------------------------- //
// add templates to the hero zone (before posts list)
heroModules.push({
template: '',
order: 99
});
// add templates to the footer (after posts list)
footerModules.push({
template: '',
order: 99
});
// ------------------------------------------------------------------------------------------- //
// ------------------------------------------ Posts ------------------------------------------ //
// ------------------------------------------------------------------------------------------- //
// add templates to the post items
postModules.push({
template: '',
order: 99
});
// add templates to the post heading zone
postHeading.push({
template: '',
order: 99
});
// add templates to the post meta zone
postMeta.push({
template: '',
order: 99
});
// ------------------------------------------------------------------------------------------- //
// -------------------------------------- User Profiles -------------------------------------- //
// ------------------------------------------------------------------------------------------- //
userProfileDisplay.push({
template: '',
order: 99
});
userProfileEdit.push({
template: '',
order: 99
});