message no. 79044
Posted by fdhgdh in #jekyll at 2015-02-11T21:38:42Z
Maybe I was not clear. I'm trying to filter my posts by language. For users using "en" site, to be able to see only posts in english, and for people using "lv" to see only information in latvian. At the moment I see all the posts. <ul class="entries"> {% for post in site.posts %} <li> <a href="{{ post.url }}"> <h3>{{ post.title }} {{ post.date | date: "%F"}}</h3> </a> </li> {% endfor %}</ul>