Handbook frontmatter
This is a Controlled Document
In line with GitLab’s regulatory obligations, changes to controlled documents must be approved or merged by a code owner. All contributions are welcome and encouraged.This page covers what frontmatter information is available on handbook pages, and their usage.
Format and title
At the top of the file, start with three hyphens, frontmatter entries, closing with three more hyphens:
---
title: "Page title"
other_attribute: "see other sections for what's valid"
---
Every page should have a title at minimum.
Titles should use sentence case.
Description
A description is very useful to provide a summary and will be displayed in the list of leaf pages.
Whether a list of leaf pages is displayed depends on the layout. By default, the list is shown at the bottom of the page.
description: "Summary of page content."
Aliases
Note
Please do not use an alias unless the redirect needs to be kept permanently. Use a redirect instead.The aliases provide a list of other paths the current page should be for. Essentially, it’s providing a redirect paths.
If a user visits one of the listed aliases, it will redirect to the current page.
aliases:
- /handbook/page/path/
- /handbook/old/page/location/
Controlled Documents
Controlled documents require the handbook frontmatter attribute controlled_document
set to true
. This attribute also renders the warning header, linking to controlled documents review section. Example:
---
title: "Controlled Document Procedure"
description: "GitLab deploys control activities through policies and standards that establish what is expected and procedures that put policies and standards into action."
controlled_document: true
---
Some pages might not need the warning banner which can optionally be disabled using the controlled_document_banner_disabled
attribute.
---
title: "Public document without banner"
description: "..."
controlled_document: true
controlled_document_banner_disabled: true
---
In addition to the frontmatter for individual pages, controlled documents and their codeowner(s) must be listed in the “Controlled Documents” section of the repository’s CODEOWNERS
file. Please also follow any instructions at the top of the CODEOWNERS
file.
Page Types (Layouts)
Note: To keep the handbook consistent, we discourage overriding the page type
(aka layout).
You may notice that some pages have layout
in the frontmatter, such as:
---
title: "Some page"
layout: default
---
The layout
keyword was used in the old www-gitlab-com
project and is no longer relevant. Please remove it if you see it.
We now use the Docsy theme, which includes some provided layouts. By default, all handbook pages inherit the docs
type specified in content/handbook/_index.md
.
If you are adding a new top-level section to the site, we encourage you to do the same:
<!-- content/<new_section>/_index.md -->
---
title: New Section
cascade:
- type: docs
---
Welcome to this new section of the handbook site!
One exception to this is the “news” section of the internal-handbook which inherits the blog
page type.
Math
If the page needs to render mathematical and other formulae using LaTex then the math
parameter must be set to true
math: true