# HH - New page & fmThis is the summary.

## Pages

### Create new page

GetDoks [reference](https://getdoks.org/docs/start-here/getting-started/#add-pages)

```bash
npm run create docs/appendix/frontmatter.md
```
### Frontmatter

Hugo [reference](https://gohugo.io/content-management/front-matter/)

#### Default behaviour

GetDoks [reference](https://getdoks.org/docs/reference/frontmatter/)

```md {title="Net new page with above command",lineNos=true}
---
title: "Frontmatter"
description: ""
summary: ""
date: 2024-04-21T17:16:04Z
lastmod: 2024-04-21T17:16:04Z
draft: true
weight: 9400
toc: true
seo:
  title: "" # custom title (optional)
  description: "" # custom description (recommended)
  canonical: "" # custom canonical URL (optional)
  noindex: false # false (default) or true
---
```

#### BFSI settings

```md {title="BFSI",lineNos=true}
---
title: "Voorwoord"
slug: "introduction"
summary: "" # Shown in FlexSearch
date: 2023-09-07T16:04:48+02:00
lastmod: 2023-09-07T16:04:48+02:00
draft: false
menu:
  docs:
    parent: "overview"
    identifier: "introduction-832e10dab9be05c42e3a1448b4349c8f"
weight: 1010
toc: true
seo:
  noindex: true # false (default) or true
---
```

## Sections

Hugo [Reference](https://gohugo.io/content-management/sections/)

### Create new section

### Frontmatter

#### Default behaviour

```md {title="Net new _index.md from a section after running a clean doks (v1.4.1) install",lineNos=true}
---
title: "Guides"
description: ""
summary: ""
date: 2023-09-07T16:06:50+02:00
lastmod: 2023-09-07T16:06:50+02:00
draft: false
menu:
  docs:
    parent: ""
    identifier: "guides-4e0d0e0f89f7decc11eaad4ae9193018"
weight: 800
toc: true
seo:
  title: "" # custom title (optional)
  description: "" # custom description (recommended)
  canonical: "" # custom canonical URL (optional)
  noindex: false # false (default) or true
---
```

#### BFSI settings

```md {title="BFSI _index.md",lineNos=true}
---
title: "Appendix"
date: 2022-12-23T16:59:58+01:00
lastmod: 2022-12-23T16:59:58+01:00
draft: false
menu:
  docs:
    parent: ""
    identifier: "appendix"
weight: 9000
toc: true
sidebar:
  collapsed: true
seo:
  noindex: true # false (default) or true
---
```
