2016-04-11 22:01:41 +00:00
|
|
|
<ul class="post-list">
|
2016-04-12 04:08:27 +00:00
|
|
|
{% for post in site.categories[include.category] limit:include.limit %}
|
2016-04-11 22:01:41 +00:00
|
|
|
<li>
|
|
|
|
<span class="post-meta">{{ post.date | date: "%Y-%m-%d" }}</span>
|
|
|
|
<h2>
|
|
|
|
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
|
|
|
</h2>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
|