Попробуй это, приятель:
app.get('/simple',(req, res) => {
res.render('simple.hbs',{title='mytitle'});
}
/simple
- это маршрут , который сделает ваши ' простые ' (HTML
, EJS
, Handlebars
и т. Д. В зависимости от того, что вы используете) и добавьте новое название в качестве дополнительной опции.
В этом примере это будет mytitle :)
Обновление: Пример использования строго HTML
app.get('/', function (req, res) {
/***
'template.html' - the filename of the template
{} - the context - fill this with all the variables you
want to use in your template
***/
res.render('template.html', {title: 'My New Title'});
});