Skip to content

Instantly share code, notes, and snippets.

@kellysutton
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kellysutton/2195ac1f5ffc4b98bbf9 to your computer and use it in GitHub Desktop.
Save kellysutton/2195ac1f5ffc4b98bbf9 to your computer and use it in GitHub Desktop.
Public Drafts in Jekyll
---
layout: post
title: "Public Drafts in Jekyll"
date: 2015-02-18 00:00:00
draft: true
---
One of the things I like to do with more…
{% for post in site.posts limit:10 %}
{% unless post.draft %}
<item></item>
{% endunless %}
{% endfor %}
<!-- head and all that good stuff -->
{% for post in site.posts %}
{% unless post.draft %}
<li>{% post.title %}</li>
{% endunless %}
{% endfor %}
<!-- footer and business -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment