diff options
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> |