@bpanel/genesis-theme
Version:
The first theme in a chain of bPanel reference themes - "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks"
24 lines (17 loc) • 600 B
JavaScript
// Entry point for your plugin
// This should expose your plugin's modules/* START IMPORTS */
import modules from './plugins';
/* END IMPORTS */
const plugins = Object.values(modules);
/* START EXPORTS */
export const metadata = {
name: '@bpanel/genesis-theme',
pathName: '',
displayName: 'Genesis Theme',
author: 'bpanel-org',
description:
'The first theme in a chain of bPanel reference themes - "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks"',
version: require('../package.json').version
};
export const pluginConfig = { plugins };
/* END EXPORTS */