Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 781 Bytes

c_blog.md

File metadata and controls

29 lines (23 loc) · 781 Bytes
layout title permalink
page
Blog
/blog/

{% for post in site.categories.blog limit:5 %}

<header class="post-header">
  <h1 itemprop="name" class="post-title">
    <a itemprop="url" class="post-link" href="{{ post.url | prepend: site.baseurl | prepend: post.baseurl }}">{{ post.title }}</a>
  </h1>
  <time itemprop="datePublished" datetime="{{ post.date | date: '%Y-%m-%d' }}">
  {{ site.locales[site.default_locale].PostDate }}{{ post.date | date: "%b %-d, %Y" }}
  </time>
  </p>
</header>

<article class="post-content" itemprop="articleBody">
  {{ post.longexcerpt }}
</article> <hr />

{% endfor %}