jekyll-minifier/spec/fixtures/_layouts/category_index.html

13 lines
436 B
HTML
Raw Normal View History

2023-11-19 09:42:13 +00:00
---
layout: page
---
<div class="page-content wc-container">
<table>
{% for post in site.categories[page.category] %}
<tr>
<td><i class="icon-clock"></i><time datetime="{{post.date|date:"%F"}}">{{post.date|date:"%b %d, %Y"}}</time></td>
<td><a href="{{ post.url | prepend: site.baseurl | prepend: site.url }}">{{ post.title }}</a></td>
</tr>
{% endfor %}
</table>
</div>