diff options
author | EuAndreh <eu@euandre.org> | 2020-11-03 07:45:21 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-11-03 07:45:21 -0300 |
commit | 938a497ee81fcee23396ce760eee173ed35fdfdc (patch) | |
tree | d29862e119b8149e18f484f82f42dcb6dac69ac4 /_includes/link-listing.html | |
parent | default.nix: Enable --trace by default (diff) | |
download | euandre.org-938a497ee81fcee23396ce760eee173ed35fdfdc.tar.gz euandre.org-938a497ee81fcee23396ce760eee173ed35fdfdc.tar.xz |
Better space link-listing
Diffstat (limited to '_includes/link-listing.html')
-rw-r--r-- | _includes/link-listing.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/_includes/link-listing.html b/_includes/link-listing.html index 2828efb..2ceaf6a 100644 --- a/_includes/link-listing.html +++ b/_includes/link-listing.html @@ -5,11 +5,13 @@ </a> </h2> -<ul> +<ul class="no-style"> {% assign entries = include.entries | where:"lang", page.lang | sort: "date" | reverse %} {% for entry in entries %} <li> - <a href="{{ entry.url | relative_url }}">{{ entry.title | escape }}</a> - {% include i18n-date.html date=entry.date %} + {% include i18n-date.html date=entry.date %} + <br /> + <a href="{{ entry.url | relative_url }}">{{ entry.title | escape }}</a> </li> {% endfor %} </ul> |