blob: 2828efb1c306e94b0bcc6b4f14ff6bb7b1fabe41 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<h2>
{{ site.t[include.kind].listing[page.lang] }}
<a href="{% link {{ site.t[include.kind].feed.url[page.lang] }} %}">
<img class="simple-icon" src="/images/atom.svg" alt="{{ site.t.alt.atom[page.lang] }}" />
</a>
</h2>
<ul>
{% assign entries = include.entries | where:"lang", page.lang | sort: "date" | reverse %}
{% for entry in entries %}
<li>
<a href="{{ entry.url | relative_url }}">{{ entry.title | escape }}</a> - {% include i18n-date.html date=entry.date %}
</li>
{% endfor %}
</ul>
|