aboutsummaryrefslogtreecommitdiff
path: root/_layouts/pastebins-listing.html
blob: 0c4a993973530d56cc4d8590f366a0da52765565 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
layout: default
---
<h2>Pastebins listing</h2>
<ul>
  {% assign pastebins = site.pastebins | sort: "date" | reverse %}
  {%- for pastebin in pastebins -%}
  <li>
    <a href="{{ pastebin.url | relative_url }}">{{ pastebin.title | escape }}</a> - {% include i18n-date.html date=pastebin.date %}
  </li>
  {%- endfor -%}
</ul>