aboutsummaryrefslogtreecommitdiff
path: root/_layouts/pastebins-listing.html
blob: 2829411aa7dc37af13ab2eea66f2fe9d00461f23 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
---
layout: default
---
<h1>Pastebins listing</h1>
<ul>
  {%- for pastebin in site.pastebins -%}
  <li>
    <a href="{{ pastebin.url | relative_url }}">{{ pastebin.title | escape }}</a> - {{ pastebin.date | date: "%b %-d, %Y" }}
  </li>
  {%- endfor -%}
</ul>