ryanhornberger / nunjucks-html-loader

Webpack Loader for Nunjucks that returns raw html. Also works with Webpack watching system.
MIT License
27 stars 23 forks source link

Include data from JSON file #9

Closed goldfinch closed 7 months ago

goldfinch commented 7 years ago

be able to include custom data into nunjucks templates from JSON file

eg:

{% includeData
  'data/user.json',
  'data/user.json' as user
%}

Hello {{ firstName }} {{ lastName}}
Hi {{ user.firstName }} {{ user.lastName}}

find out more: https://github.com/VincentLeung/nunjucks-includeData