Search code examples
jekyll

Can I use draft variable in front matter?


Can I make a post in my siteto draft using draft variable in front matter of posts like

---
.....
draft: true
---

Solution

  • Two ways :

    1. with a post's front matter variable published: false (documentation)

    2. by putting your draft posts in a _drafts folder (documentation)