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
| title | yes | The page title. This is added to the HTML output as a `<h1>` level header. |
215
+
| description | yes | A sentence that describes the page contents. This is added to the HTML metadata. |
216
+
| keywords | yes | A comma-separated list of keywords. These are added to the HTML metadata. |
217
+
| redirect_from | no | A YAML list of pages which should redirect to THIS page. At build time, each page listed here is created as a HTML stub containing a 302 redirect to this page. |
218
+
| notoc | no | Either `true` or `false`. If `true`, no in-page TOC is generated for the HTML output of this page. Defaults to `false`. Appropriate for some landing pages that have no in-page headings.|
219
+
| toc_min | no | Ignored if `notoc` is set to `true`. The minimum heading level included in the in-page TOC. Defaults to `2`, to show `<h2>` headings as the minimum. |
220
+
| toc_max | no | Ignored if `notoc` is set to `false`. The maximum heading level included in the in-page TOC. Defaults to `3`, to show `<h3>` headings. Set to the same as `toc_min` to only show `toc_min` level of headings. |
221
+
| tree | no | Either `true` or `false`. Set to `false` to disable the left-hand site-wide navigation for this page. Appropriate for some pages like the search page or the 404 page. |
222
+
| no_ratings | no | Either `true` or `false`. Set to `true` to disable the page-ratings applet for this page. Defaults to `false`. |
223
+
224
+
The following is an example of valid (but contrived) page metadata. The order of
225
+
the metadata elements in the front-matter is not important.
226
+
227
+
```liquid
228
+
---
229
+
description: Instructions for installing Docker on Ubuntu
0 commit comments