2016-05-13 16:48:46 +07:00
|
|
|
const choo = require('../../../')
|
|
|
|
|
|
|
|
|
|
const emailList = require('../elements/email-list')
|
|
|
|
|
const pathname = require('../elements/pathname')
|
|
|
|
|
const email = require('../elements/email')
|
|
|
|
|
const nav = require('../elements/nav')
|
|
|
|
|
|
2016-05-14 10:44:44 +07:00
|
|
|
module.exports = function (params, state, send) {
|
|
|
|
|
return choo.view`
|
|
|
|
|
<main class="mw5 mw7-ns center cf">
|
|
|
|
|
${pathname(params, state, send)}
|
|
|
|
|
${nav(params, state, send)}
|
|
|
|
|
<section class="fl mt4 w-80 db">
|
|
|
|
|
${emailList(params, state, send)}
|
|
|
|
|
${email(params, state, send)}
|
|
|
|
|
</section>
|
|
|
|
|
</main>
|
|
|
|
|
`
|
2016-05-13 16:48:46 +07:00
|
|
|
}
|