Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 870 Bytes

index.md

File metadata and controls

33 lines (25 loc) · 870 Bytes
layout
default

Posts

    {% for post in site.posts %}
  •     {% if post.thumbnail %}
          <img src="{{ post.thumbnail }}" class="post-thumbnail"/> 
        {% endif%} 
        {% assign author = site.data.people[post.author] %}
    
        <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ author.name }}</span></span>{% endif %}</span>
    
        <h2>
          <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
        </h2>
        
        <div class="post-excerpt">
        {{ post.excerpt }}
        </div>
        <br/>
        <hr class="style14">
      </li>
    {% endfor %}