generator-roosevelt
Version:
🏭🧸 Command line application for creating Roosevelt apps.
9 lines (8 loc) • 325 B
JavaScript
module.exports = () => {
const model = require('models/global')()
model.content.hello = 'Hi! I\'m a variable trickling down through the MVC structure!'
model.content.picLabel = 'Here\'s a silly picture of Teddy Roosevelt:'
model.teddyPath = '/images/teddy.jpg'
model.content.pageTitle = 'Homepage'
return model
}