Skip to content

Instantly share code, notes, and snippets.

@stephenajulu
Forked from Phlow/jeykll-post-counter.liquid
Created November 4, 2019 05:58
Show Gist options
  • Save stephenajulu/e1a9769370fff1bb22cc5ac133c280ef to your computer and use it in GitHub Desktop.
Save stephenajulu/e1a9769370fff1bb22cc5ac133c280ef to your computer and use it in GitHub Desktop.
Counter: This code snippet just counts your jekyll posts and spits out the result
{% comment %}
*
* Counter: This include counts your jekyll posts
*
{% endcomment %}{% assign counter = 0 %}{% for item in site.posts %}{% unless item.published == false %}{% assign counter=counter | plus:1 %}{% endunless %}{% endfor %}{{ counter }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment