metalsmith-templates

A metalsmith plugin to render files with templates.

This package was split into two simpler plugins: metalsmith-layouts and metalsmith-in-place
Last updated 12 years ago by segmentio .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install metalsmith-templates 
SYNC missed versions from official npm registry.

metalsmith-templates

A metalsmith plugin to render files with templates.

You can use any templating engine supported by consolidate.js.

Installation

$ npm install metalsmith-templates

CLI Usage

Install the node modules and then add the metalsmith-templates key to your metalsmith.json plugins. The simplest use case just requires the template engine you want to use:

{
  "plugins": {
    "metalsmith-templates": "handlebars"
  }
}

If you want to specify additional options, pass an object:

{
  "plugins": {
    "metalsmith-templates": {
      "engine": "handlebars",
      "directory": "templates"
    }
  }
}

Javascript Usage

For the simplest use case, just pass your templating engine:

var templates = require('metalsmith-templates');

metalsmith.use(templates('swig'));

To specify additional options:

metalsmith.use(templates({
  engine: 'swig',
  directory: 'templates'
}));

License

MIT

Current Tags

  • 0.7.0                                ...           latest (11 years ago)

17 Versions

  • 0.7.0 [deprecated]           ...           11 years ago
  • 0.6.1 [deprecated]           ...           11 years ago
  • 0.6.0 [deprecated]           ...           12 years ago
  • 0.5.2 [deprecated]           ...           12 years ago
  • 0.5.1 [deprecated]           ...           12 years ago
  • 0.5.0 [deprecated]           ...           12 years ago
  • 0.4.0 [deprecated]           ...           12 years ago
  • 0.3.0 [deprecated]           ...           12 years ago
  • 0.2.1 [deprecated]           ...           12 years ago
  • 0.2.0 [deprecated]           ...           12 years ago
  • 0.1.0 [deprecated]           ...           12 years ago
  • 0.0.6 [deprecated]           ...           12 years ago
  • 0.0.5 [deprecated]           ...           12 years ago
  • 0.0.4 [deprecated]           ...           12 years ago
  • 0.0.3 [deprecated]           ...           12 years ago
  • 0.0.2 [deprecated]           ...           12 years ago
  • 0.0.1 [deprecated]           ...           12 years ago
Maintainers (1)
Downloads
Today 0
This Week 1
This Month 1
Last Day 0
Last Week 0
Last Month 1
Dependencies (6)
Dev Dependencies (4)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |