39 lines
977 B
HTML
39 lines
977 B
HTML
---
|
|
layout: content-page
|
|
lang: en
|
|
title: index
|
|
className: index
|
|
ref: index
|
|
---
|
|
|
|
{% capture intro %}
|
|
{% include text/en/intro.md %}
|
|
{% endcapture %}
|
|
|
|
|
|
<div>
|
|
<span class="intro">{{ intro | markdownify }}</span>
|
|
<h2>{{ site.data.translations.latest[page.lang]}}</h2>
|
|
<ul class="post-list">
|
|
{% for post in site.posts %}
|
|
{% if post.lang == page.lang %}
|
|
<li class="post-item">
|
|
<header class="post-header">
|
|
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
|
|
<h3 class="titlecase">
|
|
{% include utils/translated-date.html date=post.date lang=page.lang %}
|
|
</h3>
|
|
<!-- <h3>{{ post.date | date_to_string }}</h3> -->
|
|
|
|
</header>
|
|
<div class="post-content">
|
|
<span class="post-excerpt">{{ post.excerpt }}</span>
|
|
<a href="{{ post.url }}">{{ site.data.translations.readMore[page.lang]}} -></a>
|
|
</div>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|