Apply legibility improvement to categories as well

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
Jim Martens 2019-06-09 17:24:04 +02:00
parent 122fe75513
commit 4d8e0c4be7
2 changed files with 20 additions and 18 deletions

View File

@ -125,7 +125,7 @@ ul.list-unstyled li {
// limit width of article to optimise reading experience
@include media-breakpoint-up(md) {
article, .index {
article, .index, .category {
width: 550px;
margin-left: auto;
margin-right: auto;

View File

@ -1,21 +1,23 @@
---
layout: default
---
<div class="category">
{{ content }}
<ul class="post-list list-unstyled">
{% for post in site.categories[page.category] %}
<li class="mb-4">
<div class="small text-muted">
<span class="far fa-calendar-alt"></span>
<time datetime="{{ post.date | date_to_xmlschema }}">
{{ post.date | date: "%b %-d, %Y" }}
</time>
• {% include reading-time.html content=post.content %}
</div>
<p class="h4 post-title">
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
</p>
</li>
{% endfor %}
</ul>
</div>
{{ content }}
<ul class="post-list list-unstyled">
{% for post in site.categories[page.category] %}
<li class="mb-4">
<div class="small text-muted">
<span class="far fa-calendar-alt"></span>
<time datetime="{{ post.date | date_to_xmlschema }}">
{{ post.date | date: "%b %-d, %Y" }}
</time>
• {% include reading-time.html content=post.content %}
</div>
<p class="h4 post-title">
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
</p>
</li>
{% endfor %}
</ul>