I'm working with jekyll but the pagination not working, I thing that I'm doing all ok from official page.
_config.yml
paginate: 3
Gemfile gem 'jekyll-paginate'
Index.html
{% if paginator.total_pages > 1 %} FUNCIONA!!!
{% else %} NOT WORKING {% else %}
{% endif %}
{% for post in paginator.posts %}
hello3
{% endfor %}
{% for post in site.posts %}
hello1
{% endfor %}
The posts are .md, is a problem?