site/index.html

25 lines
779 B
HTML

---
layout: default
title: latest posts <span style="font-size:20px;"><a href="/feed/blog.xml"><i class="fas fa-rss-square"></i></a></span>
subtitle: all the posts, in reverse chronological. there is an atom feed above.
permalink: /
---
<hr>
<ul style="list-style-type:none;margin:0;padding:0;">
{% for post in site.posts %}
{% assign category = post.category %}
{% if category == 'blog' %}
<li>
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
<div style="font-style: italic;">
<img src="/assets/images/write.ico" style="display: inline;height: 20px;width: 20px;">&nbsp;{{ post.date | date_to_string }}
</div>
{{ post.content | strip_html | truncatewords: 30 }}
<br>
<br>
</li>
{% endif %}
{% endfor %}
</ul>