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>