-
-
Save shawngraham/c41dd05dd2f0259091ba to your computer and use it in GitHub Desktop.
List all posts, tags and categories in Jekyll. https://github.com/zhuochun/md-writer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
layout: none | |
--- | |
{ | |
"categories": [ | |
{% for category in site.categories %} | |
"{{ category | first }}"{% unless forloop.last %},{% endunless %} | |
{% endfor %} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
layout: none | |
--- | |
{ | |
"posts": [ | |
{% for post in site.posts %} | |
{ | |
"title": "{{ post.title | xml_escape }}", | |
"url": "{{ site.url }}{{ post.url }}", | |
"date": "{{ post.date | date_to_xmlschema }}" | |
}{% unless forloop.last %},{% endunless %} | |
{% endfor %} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment