docs/layouts
Jason Etcovitch 21b44e08cb
Fix Algolia page for release notes (#16907)
* Add an h1 for Algolia

* Fix markdown styles
2020-12-11 19:38:45 +00:00
..
README.md Hello git history spelunker! 2020-09-27 14:10:11 +02:00
default.html Add/use small-footer for Actions landing page (#16265) 2020-11-03 13:12:25 -05:00
dev-toc.html use abbr tag 2020-11-16 20:46:54 -05:00
enterprise-server-releases.html add Developer deprecated docs to the list and also add a mini-toc 2020-12-08 10:38:39 -05:00
error-404.html Add/use small-footer for Actions landing page (#16265) 2020-11-03 13:12:25 -05:00
error-500.html Add/use small-footer for Actions landing page (#16265) 2020-11-03 13:12:25 -05:00
graphql-explorer.html Algolia requires an H1 title 2020-12-10 12:07:01 -05:00
product-landing.html [Universe] Discussions Public Beta (#16547) 2020-12-07 15:00:35 -07:00
release-notes.html Fix Algolia page for release notes (#16907) 2020-12-11 19:38:45 +00:00

README.md

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.