* Add custom hover shadows * Support avatars * Add guide-card include * Use it in product-landing * Add gradient styles * Add guides frontmatter * Use guideArticles instead of full objects * Add support for authors * Add support for category header * Just pass the whole page * Use it * guide.url => guide.href * Use `*.githubusercontent.com` * Fix mobile card width * Remove showDescription check * Use featureLinks.guideCards * Forgot an if * Remove support banner * Just use login instead of name/avatarUrl * Change card spacing * Use circular avatars * Add margin beneath "Guides" * Use smaller font * Even moar spacing * Remove category * Remove lead text, move button to bottom right * update guide cards * Change author of setting up ci to GitHub * Attribute node js guide to GitHub * Add author tag to powershell guide * update top guides section with correct actions links * Enforce size for single avatars * Adjust spacing Co-authored-by: Cynthia Rich <crichID@users.noreply.github.com>
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.