Small tweaks to the styling. Uses a global max width on the theme

This commit is contained in:
Zach Leatherman
2022-08-15 14:53:45 -05:00
parent 2d2b6c38f5
commit df6a44bf80
6 changed files with 58 additions and 46 deletions

View File

@ -3,10 +3,6 @@
<li class="postlist-item{% if post.url == url %} postlist-item-active{% endif %}">
<a href="{{ post.url | url }}" class="postlist-link">{% if post.data.title %}{{ post.data.title }}{% else %}<code>{{ post.url }}</code>{% endif %}</a>
<time class="postlist-date" datetime="{{ post.date | htmlDateString }}">{{ post.date | readableDate }}</time>
{% for tag in post.data.tags | filterTagList %}
{% set tagUrl %}/tags/{{ tag | slugify }}/{% endset %}
<a href="{{ tagUrl | url }}" class="post-tag">{{ tag }}</a>
{% endfor %}
</li>
{% endfor %}
</ol>