index.js 531 B

12345678910111213141516171819
  1. const express = require('express');
  2. module.exports = function()
  3. {
  4. return {
  5. name: '@mws/theme-simple',
  6. install: function(system){
  7. this.system = system;
  8. },
  9. setup: function(system){
  10. system.carmenLandingPage.server.app.set('layout', __dirname + '/layouts/simple');
  11. system.carmenLandingPage.server.app.use("/public", express.static(__dirname + "/public"));
  12. },
  13. start: function(system){},
  14. execute: function(){
  15. }
  16. }
  17. }