babiz / express-handlebars-paginate

BSD 3-Clause "New" or "Revised" License
7 stars 5 forks source link

Error: hbs is not defined #3

Closed chubaka closed 6 years ago

chubaka commented 8 years ago

Hi,

I am using express hanlebars and the following code: var paginateHelper = require('express-handlebars-paginate'); hbs.handlebars.registerHelper('paginateHelper', paginateHelper.createPagination);

I get the following error: hbs.handlebars.registerHelper('paginateHelper', paginateHelper.createPagination); ^

ReferenceError: hbs is not defined

Can you help?

babiz commented 8 years ago

HI Chubaka,

It says hbs is not defined. Did you define that. For example:

    var hbs = exphbs.create({
        defaultLayout: 'main',
        extname: '.html',    
        helpers: handlebarsHelpers,
    });`