ericf / express-handlebars

A Handlebars view engine for Express which doesn't suck.
BSD 3-Clause "New" or "Revised" License
2.32k stars 382 forks source link

Help: Could I transfer some part of view out of {{{body}}} ? #215

Open melan0802 opened 6 years ago

melan0802 commented 6 years ago

Hello, could I render some part of view out of {{{body}}} to achive something like this: layout.hbs:

<head>
<link href="common.css">
{{> news-css}}
</head>
<body>
{{{body}}}
</body>

news.hbs:

{{#define-block news-css}}
<link href="news.css">
{{/define-block}}

//some code render in body

Or maybe I'm using this project in a wrong way? Could you help me? Thank you