2.0.3 • Published 8 years ago

koa-artpl v2.0.3

Weekly downloads
2
License
ISC
Repository
github
Last release
8 years ago

koa-artpl

封装koa的art-template模板中间件

更新

解决变量未定义 视图渲染报错 支持基本的运算符

Installation

$ npm install koa-artpl

Use with koa

var artpl = require('koa-artpl');

artpl(app, {
    root: path.join(__dirname, 'view')
});

app.use(function *(next) {
    // set theme;
    this.theme = 'home';

    // helper
    this.template.helper('dateFormat', function(){
        return data;
    });

    this.body = yield this.render('index', {title: 'koa-artpl'});
});
2.0.3

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago