aboutsummaryrefslogtreecommitdiff
path: root/_layouts/pastebins-listing.html
blob: 58837e137f22694ec63ed85a588368da35f55e5d (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
layout: default
---
<h1>Pastebins listing</h1>
<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>