<ul>

{% for post in site.posts limit:include.limit %}
  {% if page.title == post.title %}
    <li><a href="{{ post.url }}">{{ post.title }}</a></li>
  {% else %}
    <li><a href="{{ post.url }}">{{ post.title }}</a></li>
  {% endif %}
{% endfor %}

</ul>