summaryrefslogtreecommitdiffstats
path: root/_includes/latest.html
blob: 6b6e1144d0fadb42fadcae2465d699422ea86319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <div class="articles">
    <table class="posts-table">
  
    {% assign posts = site.blog | sort: 'date' | reverse %}
    {% for post in posts limit: include.limit %}
  
      <tr>
        <td class="posts-td posts-td-link">
          <a href="{{ post.url }}" class="link-decor-none">{{ post.title }}</a>
        </td>
        <td class="posts-td posts-td-time">
          <span class="post-meta">
            <time datetime="{{ post.date }}">{{ post.date | date: "%Y-%m-%d" }}</time>
          </span>
        </td>
      </tr>
  
    {% endfor %}
  
    </table>
  </div>