28 lines
670 B
Markdown
28 lines
670 B
Markdown
|
|
---
|
||
|
|
title: Single page
|
||
|
|
sidebar: true
|
||
|
|
sidebarlogo: fresh-white
|
||
|
|
include_footer: false
|
||
|
|
---
|
||
|
|
|
||
|
|
## Creating a single page
|
||
|
|
Single pages displays a single unit of information and are more or less independent from the landing page above.
|
||
|
|
|
||
|
|
You can create single pages in the `content` directory (even sub-dirs are possible).
|
||
|
|
|
||
|
|
If you'd like to have the footer displayed on your single page include `include_footer: true` in your front matter.
|
||
|
|
|
||
|
|
<details>
|
||
|
|
<summary>Code</summary>
|
||
|
|
|
||
|
|
```yaml
|
||
|
|
---
|
||
|
|
title: AGB
|
||
|
|
sidebar: true # or false to display the sidebar
|
||
|
|
sidebarlogo: fresh-white-alt # From (static/images/logo/)
|
||
|
|
include_footer: true # or false to display the footer
|
||
|
|
---
|
||
|
|
```
|
||
|
|
|
||
|
|
</details>
|