aboutsummaryrefslogtreecommitdiff
path: root/_includes/link-listing.html
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-11-03 07:45:21 -0300
committerEuAndreh <eu@euandre.org>2020-11-03 07:45:21 -0300
commit938a497ee81fcee23396ce760eee173ed35fdfdc (patch)
treed29862e119b8149e18f484f82f42dcb6dac69ac4 /_includes/link-listing.html
parentdefault.nix: Enable --trace by default (diff)
downloadeuandre.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.html6
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>