layout: default


<div class=“home”>

{{ content }}

<ul class="post-list">
  {% assign post_limit = site.post_limit | default: 3 %}
  {% for post in site.posts limit: post_limit %}

    <li>
    {% if site.post_excerpt.active %}
       {% include post_excerpt.html %}
    {% else %}
      <h1 class="post-title">
        <a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
     </h1>
      <span class="post-meta">posted on {{ post.date | date: "%b %-d, %Y" }}</span>
      <div class="post-content">
          {{ post.content }}
      </div>
    </li>
    {% endif %}
  {% endfor %}
</ul>

</div>