Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.06 KB

index.md

File metadata and controls

39 lines (32 loc) · 1.06 KB
layout
default
 

Latest Posts:

    {% for post in site.posts %} {% assign author = site.data.authors[post.author] %}
      <li>
        <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
        {% if post.author %}<a href='{{site.url}}/participants/{{post.author}}/'>{{ author.display_name }}</a>{% endif %}
        
        <h2><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2>
        {% if post.tags != empty %}
          <div class='post-meta'>
            Tags: 
              {% for tag in post.tags %}
                <span>{{ tag }}</span>
              {% endfor %}
            </div>
        {% endif %}
        
        {% if post.tags != empty %}
          <div class='tags'>
            Tags: 
            {% for tag in post.tags %}
              <a href="/tag/{{ tag }}">{{ tag }}</a>&nbsp;
            {% endfor %}
          </div>
        {% endif %}
        
        
      </li>
    {% endfor %}