1
0
mirror of synced 2025-12-30 21:02:34 -05:00
Files
docs/layouts
Jason Etcovitch 02f288374d Actions page design tweakz (#16467)
* Blue links, align padding

* Put date below title
2020-11-13 16:04:30 -05:00
..
2020-09-27 14:10:11 +02:00

Layouts

The files in this directory are layouts which can be wrapped around pages.

See also includes, which are snippets of HTML or Markdown that can be reused in multiple layouts.

Using Layouts

Be default, layouts/default.html will be used for all pages.

To use a custom layout, add a layout value to the page's frontmatter:

---
title: Hello World
layout: some-layout
---

The example above will use the layouts/some-layout.html layout.

To render a page with no layout, set layout: false.

Writing Layouts

Layout files should have a .html or .md extension, and they must include the string {{ content}} to specify where inner content should be injected.