mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
88 lines
2.5 KiB
JavaScript
88 lines
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
|
||
|
});
|