Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xazax/2979639 to your computer and use it in GitHub Desktop.
Save xazax/2979639 to your computer and use it in GitHub Desktop.
Draft posts in Jekyll
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{% for post in site.posts %}
{% unless post.draft %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endunless %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment