0.1.5 • Published 11 years ago

express3-plates v0.1.5

Weekly downloads
9
License
-
Repository
github
Last release
11 years ago

express-plates

This small piece of code allow you to simply use Flatiron's Plate template engine in within Express framework.

Example - How to

Here is a simple example to render a /views/index.html

app = require('express').createServer();
require('express-plates').init(app);

app.set('views', __dirname + '/views');

app.get('/', function(req, res) {
    res.render('index', {
        data: {
            title: 'Plates is pretty cool, so is Express',
            content: 'It seems to work quiet well'
        }
    });
});

app.listen(8080);

Detailed setup and options

Maps

init(app) returns the plates object so you can retrieve it and use Map() easilly :

var plates = require('express-plates').init(app);

// further in the app...

app.get('/', function(req, res) {
    var map = plates.Map();

    map.class('content').to('content');

    res.render('index', {
        data: {
            content: 'It seems to work quiet well'
        },
        map: map
    });
});