Does anyone here have experience with endless/infinite scrolling in Jekyll? I used the script here (https://github.com/tobiasahlin/infinite-jekyll) and followed all the directions. Problem is that any posts loaded after scroll are missing their tags:
Here’s how I modified the all-posts.json file but it dosn’t seem to have any affect:
layout: null
{
“posts” : [
{% for post in site.posts %}
{"url":"{{ post.url }}"
{% if post.categories %}
, "categories":"{{ post.categories }}"
{% endif %}
{% if post.tags %}
, "tags":"{{ post.tags }}"
{% endif %}
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]
}
Any ideas how to go about this?