aboutsummaryrefslogblamecommitdiff
path: root/_includes/link-listing.html
blob: 9252b7bd8619078118610b68c9e471f425219507 (plain) (tree)
1
2
3
4
5
6
7
8

                                               
                                                           



                                                                                             
                     


                                                                                           


                                                                             


              
<h2>
  {{ site.t[include.kind].listing[page.lang] }}
  <a href="{{ 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 class="no-style">
  {% assign entries = include.entries | where:"lang", page.lang | sort: "date" | reverse %}
  {% for entry in entries %}
    <li>
      {% include i18n-date.html date=entry.date %}
      <br />
      <a href="{{ entry.url | relative_url }}">{{ entry.title | escape }}</a>
    </li>
  {% endfor %}
</ul>