Files
hugo-fresh/docs/content/singlepage.md

28 lines
670 B
Markdown
Raw Normal View History

2021-02-16 09:24:52 +01:00
---
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>