This commit is contained in:
StefMa
2021-02-16 09:24:52 +01:00
parent 0fa1741f38
commit fa13a72e60
8 changed files with 481 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
---
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>