1.0.1 • Published 6 years ago

veams-plugin-templater v1.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

VeamsTemplater Plugin

This plugin adds the possibility to render your handlebars templates in an easy way. You can register the engine, templates, partials and helpers and use them directly in your other classes.

How to

import Veams from 'veams';
import VeamsTemplater from 'veams-plugin-templater';
import handlebars from 'handlebars/runtime';
import { templates, partials } from './templates';
import { customHelper } from './helpers';

// Add plugins to the Veams system
Veams.use(VeamsTemplater, {
    engine: handlebars,
    templates: templates,
    partials: partials,
    helpers: [
        customHelper
    ]
});

// Render the template
$(body).append(
    Veams.templater.render('_test-partial', {data: 'custom data passed to partial'})
);