diff options
-rw-r--r-- | _includes/link-listing.html | 6 | ||||
-rw-r--r-- | styles.css | 9 |
2 files changed, 13 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> @@ -62,6 +62,14 @@ blockquote { border-left: 3px solid #ccc; } +ul.no-style { + list-style-type: none; +} + +ul.no-style li { + margin: 20px 0px; +} + /* Footer */ @@ -148,6 +156,7 @@ div.header-anchor:hover img { visibility: visible; } + /* Plaintext code block links */ div.plaintext-link { |