23 lines
435 B
JavaScript
23 lines
435 B
JavaScript
// This configures the apostrophe-pages module to add a "home" page type to the
|
|
// pages menu
|
|
|
|
module.exports = {
|
|
types: [
|
|
{
|
|
name: 'district',
|
|
label: 'District Page'
|
|
},
|
|
{
|
|
name: 'avhs',
|
|
label: 'High School Page'
|
|
},
|
|
{
|
|
name: 'aves',
|
|
label: 'Elementary School Page'
|
|
}
|
|
|
|
// Add more page types here, but make sure you create a corresponding
|
|
// template in lib/modules/apostrophe-pages/views/pages!
|
|
]
|
|
};
|