Lego2012
10/24/2016 - 4:28 PM

Latest Articles

Latest Articles

---
layout: default
---

<div class="home">
  <!-- Section for Featured Post -->
  <!-- Section for Featured Projects -->
  <!-- Section for Latest Articles -->
  <section class="site-section site-section-last">
    <div class="wrapper">
      <h1>Latest Articles</h1>
      <ul class="post-list">
        {% for post in site.posts reversed | limit:4  %}
          <li class="post">
            <h2>{{ post.title  }}</h2>
            <p>
              {{ post.content | strip.html | strip_newlines | truncate: 200  }}
            </p>
            <p class="post-read-more-link">
              <a href="#">read more...</a>
            </p>
          </li>
        {% endfor %}
      </ul>
    </div>
  </section>
</div>