Skip to content

Latest commit

 

History

History
47 lines (43 loc) · 1.54 KB

index.md

File metadata and controls

47 lines (43 loc) · 1.54 KB
layout title searchindex
wmt/default
Our Blog
false
blog
{% include wmt/breadcrumbs.html %}

{{ page.title }}

A vibrant project needs to share news, events, releases and other topics. The blog is the place to follow. And below are some example posts. The source for each post is located in _posts.

{% for post in site.posts limit: 10 %}
<div class="blog">
  <h2><a href="{{ post.url }}">{{post.title}}</a></h2>
  <p>{% for author in post.authors %}
     {% assign current = site.authors[author] %}
          <a href="{{ current.web }}">{{ current.name }}</a>
          {% unless forloop.last %}
          ,
          {% endunless%}
     {% endfor %}
  </p>
  <div class="blog-post-tags">
    <ul class="list-unstyled list-inline blog-info blog-tags">
      <li><i class="icon-calendar" style="display:none;"></i> {{ post.date | date_to_string }}</li>
    </ul>
  </div>
  {{ post.excerpt }}
  <div class="blog-readmore"><a href="{{ post.url }}">Read More</a></div>
</div>
<div class="clearfix"></div>    
{% endfor %}

<p><a href="./archive.html">Older Posts in the Archive</a></p>