Lego2012
9/26/2016 - 9:23 PM

Recent Posts Loop

Recent Posts Loop

<!--
Recent Posts
On my homepage I like to include a recent posts section to entice people click through and read, and also to have no content on the homepage every time I write an article. Important part of SEO!
You can easily change this to suit your site. Maybe you want 3 posts, instead of 2 or more words in the snippet.
-->

<div class="large-6 columns">
  <h3>RECENT POSTS</h3>
  {% for post in site.posts limit: 2 %}
    <h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
    <p>{{ post.content | strip_html | truncatewords:65 }}</p>
    <p><a href="{{ post.url }}">Read More</a></p>
  {% endfor %}
</div>