theread.me/index.html

33 lines
969 B
HTML
Raw Normal View History

2015-03-29 06:14:53 +00:00
---
layout: default
---
<div class="home">
<ul class="post-list">
{% for post in site.posts %}
2021-11-06 22:31:58 +00:00
{% if post.published == false %}
2021-10-30 12:54:39 +00:00
{% continue %}
{% endif %}
2018-04-27 13:42:01 +00:00
<li class='lang-{% if post.lang %}{{ post.lang }}{% else %}en{% endif %}'>
2015-03-29 06:14:53 +00:00
<h2>
2022-06-17 12:40:07 +00:00
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title | markdownify }}</a>
2017-02-23 12:38:14 +00:00
<p class="post-meta">
<span>{{ post.date | date: "%b %-d, %Y" }}</span>
{% if post.meta %} • <span>{{ post.meta }}</span>{% endif %}
<span>Reading time: {{ post.content | reading_time }}</span>
2022-07-27 15:58:52 +00:00
<span><a href="/raw{{ post.url }}">raw</a></span>
2017-02-23 12:38:14 +00:00
</p>
2015-03-29 06:14:53 +00:00
</h2>
<article class='post-content'>
{{ post.excerpt }}
</article>
</li>
{% endfor %}
</ul>
2016-11-09 12:43:55 +00:00
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via rss</a></p>
2015-03-29 06:14:53 +00:00
</div>