Jekyll
Hide certain posts from front page:
- Set
hidden: true
in front matter of posts to be hidden
---
layout: post
hidden: true
---
- In
index.html
, loop through and display all posts with code like below:
{% for post in site.posts %}
{% unless post.hidden == true %}
<!-- Include post here>
{% endunless %}
{% endfor %}
Include an internal post within another post:
[Cucumber]({{ site.baseurl }}{% link _posts/2021-03-15-cucumber.md %})