express-ejs-layouts icon indicating copy to clipboard operation
express-ejs-layouts copied to clipboard

Layout support for ejs in express.

Results 9 express-ejs-layouts issues
Sort by recently updated
recently updated
newest added

When including a partial in a view and the partial has script tags inside it, they don't get extracted to the end of the page. Is this a bug or...

when i try to pass locals to both layout and template i get a strange error `layout_content is not defined at eval (eval at compile (C:\Users\Farmy\Documents\github\laboratory_website\bakcend\express\node_modules\ejs-layout\lib\ejs.js:577:12), :10:8) at returnedFn (C:\Users\Farmy\Documents\github\laboratory_website\bakcend\express\node_modules\ejs-layout\lib\ejs.js:606:17)...

When using ```js app.set("layout extractStyles", true) ``` it would be very usefull if styles inside of `` blocks would preserve this fact, otherwise using Fallback styles like this: ```html ```...

How can I implement this in other NodeJs framework such as Fastify?

Setting up a simple example project: ```js //... app.set('view engine', 'ejs'); app.set('views', __dirname + '/views'); app.set('layout', __dirname + '/views/layouts/default.ejs'); app.set('layout extractScript', true); app.set('layout extractStyles', true); //... ``` When rendering a...

Something like ``. Also, have you seen the discussion on extending ejs to include layouts? I think you could bring some good ideas to the discussion: https://github.com/mde/ejs/pull/251

It seems like node prints out the wrong variable name when something is not defined. I had and and with not passing uid, it gave me a title is not...

Bumps [cookiejar](https://github.com/bmeck/node-cookiejar) from 2.1.1 to 2.1.4. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cookiejar&package-manager=npm_and_yarn&previous-version=2.1.1&new-version=2.1.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Say you have a base layout you want to be applied to all pages, but you also have a sub-layout that contains a little extra bloat (such as some extra...