Is there a way to output (for debugging / informational purposes) available objects and object properties in a liquid template ?
That is, let's say I use the jekyll website generation tool, and I am in the index.html template (which, as far as I know, is a liquid template). It might look something like this.
{% for post in site.posts %} <li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li> {% endfor %}
Is it possible to use template tags that could tell me / output in this template a variable called post (as well as other templates). Also, are there any template tags that I could use that would tell me that the post object has the keys date , title , url , excerpt , permalink , etc.
source share