metalsmith-twig-540

1.0.2 • Public • Published

metalsmith-twig Build Status

A metalsmith Plugin for Twig based on justjohn/twig.js.

Forked by 540 to use unmerged twig cache fix.

Install

  npm install metalsmith-twig

Configuration in metalsmith.json:

{
  "plugins": {
    "metalsmith-twig": {}
  }
}

Examples

Initialize (INIT):

var Metalsmith = require('metalsmith'),
	Twig = require('metalsmith-twig');

Metalsmith(__dirname)
	.use(twig())
	.build(function(err) {
		if (err) throw err;
	});

Options:

  • directory: (default: views) the directory for views.
  • global: (default: {}) global variables.

Files

Source file src/index.md:

---
view: layout.html
title: The title
---
The Content

View

View views/layout.html:

<!doctype html>
<html>
	<head>
		<title>{{title}}</title>
	</head>
	<body>
		{{contents}}

		{{relativePath}}css/style.css
	</body>
</html>

Docs

Contributors

Philipp
Joe Critchley

The MIT License (MIT)

Readme

Keywords

none

Package Sidebar

Install

npm i metalsmith-twig-540

Weekly Downloads

1

Version

1.0.2

License

MIT

Last publish

Collaborators

  • gorkma