theread.me/index.html

30 lines
938 B
HTML
Raw Normal View History

2015-03-29 10:44:53 +04:30
---
layout: default
---
<div class="home">
<ul class="post-list">
{% for post in site.posts %}
2018-04-27 18:12:01 +04:30
<li class='lang-{% if post.lang %}{{ post.lang }}{% else %}en{% endif %}'>
2015-03-29 10:44:53 +04:30
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
2017-02-23 16:08:14 +03:30
<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>
2017-10-20 21:17:29 +03:30
{% if post.author %} • <span><a href='{{ site.authors[post.author].url }}'>{{ post.author }}</a></span>{% endif %}
2017-02-23 16:08:14 +03:30
</p>
2015-03-29 10:44:53 +04:30
</h2>
<article class='post-content'>
{{ post.excerpt }}
</article>
</li>
{% endfor %}
</ul>
2016-11-09 16:13:55 +03:30
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via rss</a></p>
2015-03-29 10:44:53 +04:30
</div>