You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A string containing the root folder all pages live in. This option does not pull in the files themselves for processing—that's what `gulp.src()` is for. This setting tells Panini what the common root of your site's pages is.
38
+
**Type:**`String`
39
+
40
+
Path to the root folder all pages live in. This option does not pull in the files themselves for processing—that's what `gulp.src()` is for. This setting tells Panini what the common root of your site's pages is.
39
41
40
42
### `layouts`
41
43
42
-
A string containing the path to a directory containing layouts. Layout files can have the extension `.html`, `.hbs`, or `.handlebars`. One layout must be named `default`. To use a layout other than the default on a specific page, override it in the Front Matter on that page.
44
+
**Type:**`String`
45
+
46
+
Path to a folder containing layouts. Layout files can have the extension `.html`, `.hbs`, or `.handlebars`. One layout must be named `default`. To use a layout other than the default on a specific page, override it in the Front Matter on that page.
43
47
44
48
```html
45
49
---
@@ -59,24 +63,20 @@ All layouts have a special Handlebars partial called `body` which contains the c
59
63
60
64
### `partials`
61
65
62
-
A string containing a path to a directory containing HTML partials. Partial files can have the extension `.html`, `.hbs`, or `.handlebars`. Each will be registered as a Handlebars partial which can be accessed using the name of the file. (The path to the file doesn't matter—only the name of the file itself is used.)
66
+
**Type:**`String`
67
+
68
+
Path to a folder containing HTML partials. Partial files can have the extension `.html`, `.hbs`, or `.handlebars`. Each will be registered as a Handlebars partial which can be accessed using the name of the file. (The path to the file doesn't matter—only the name of the file itself is used.)
63
69
64
70
```html
65
71
<!-- Renders partials/header.html -->
66
72
{{> header}}
67
73
```
68
74
69
-
### `data`
70
-
71
-
A string containing a path to a directory containing external data, which will be passed in to every page. Data can be formatted as JSON (`.json`) or YAML (`.yml`). Within a template, the data is stored within a variable with the same name as the file it came from.
72
-
73
-
Data can also be inserted into the page itself with a Front Matter template at the top of the file.
74
-
75
-
Lastly, the reserved `page` variable is added to every page template as it renders. It contains the name of the page being rendered, without the extension.
76
-
77
75
### `helpers`
78
76
79
-
A string containing a path to a directory containing Handlebars helpers. Handlebars helpers are `.js` files which export a function via `module.exports`. The name used to register the helper is the same as the name of the file.
77
+
**Type:**`String`
78
+
79
+
Path to a folder containing Handlebars helpers. Handlebars helpers are `.js` files which export a function via `module.exports`. The name used to register the helper is the same as the name of the file.
80
80
81
81
For example, a file named `markdown.js` that exports this function would add a Handlebars helper called `{{markdown}}`.
Path to a folder containing external data, which will be passed in to every page. Data can be formatted as JSON (`.json`) or YAML (`.yml`). Within a template, the data is stored within a variable with the same name as the file it came from.
96
+
97
+
Data can also be inserted into the page itself with a Front Matter template at the top of the file.
98
+
99
+
Lastly, the reserved `page` variable is added to every page template as it renders. It contains the name of the page being rendered, without the extension.
0 commit comments