hugo-geekblog/exampleSite/content/posts/features/sticky.md

27 lines
607 B
Markdown
Raw Normal View History

---
title: Simple sticky posts
date: 2020-06-13T00:06:00+02:00
authors:
- john-doe
tags:
- Documentation
- Features
weight: 1
---
Sticky (or pinned) posts can be used to permanently pin important posts to the top of the post list. The implementation is pretty simple and handled by `weight: 1` in a post front matter. As there is no other logic to identify sticky posts you should not use negative values for weight as this will result in posts listed earlier.
2021-11-21 12:55:56 +01:00
<!--more-->
**Example:**
```yaml
---
title: Simple sticky posts
weight: 1
date: 2020-06-13T00:06:00+02:00
authors:
- john-doe
---
```