{% comment %} Recent Posts Displayed here. {% endcomment %}

Recent Posts

{% for post in site.posts limit: 3 %}
{{post.title}}
{{post.title | truncate: 40}}
{{post.date | date: "%A, %B %-d, %Y" }}
{% endfor %}
{% comment %} Other Posts {% endcomment %}

Other Posts

{% assign posts = site.posts | sample:5 %} {% for post in posts %}
{{post.title}}
{{post.title | truncate: 40}}
{{post.date | date: "%A, %B %-d, %Y" }}
{% endfor %}