const express = require('express'); module.exports = function() { return { name: '@mws/theme-simple', install: function(system){ this.system = system; }, setup: function(system){ system.carmenLandingPage.server.app.set('layout', __dirname + '/layouts/simple'); system.carmenLandingPage.server.app.use("/public", express.static(__dirname + "/public")); }, start: function(system){}, execute: function(){ } } }