papermod: how-tos : add pin a post guide

This commit is contained in:
Aditya Telange 2020-11-04 15:12:56 +05:30
parent cc597f317d
commit 1bb3840c1f
No known key found for this signature in database
GPG Key ID: 82E844EF3DA99E77

View File

@ -102,6 +102,32 @@ and contents of `extend_footer.html` will be added to bottom of page.
---
## Pin a Post
Post can be pinned/ displayed top on the list by adding a `weight=<num>` var to page-variables
example:
```yml
---
title: "My Important post"
date: 2020-09-15T11:30:03+00:00
weight: 1
---
```
```yml
---
title: "My 2nd Important post"
date: 2020-09-15T11:30:03+00:00
weight: 2
---
```
---
## References
- [Override a Hugo theme](https://zwbetz.com/override-a-hugo-theme/)