Fix a couple of contrast errors

This commit is contained in:
Lewis Dale 2023-11-17 14:03:56 +00:00
parent 4b7e1b7994
commit c865c2fb89
2 changed files with 13 additions and 5 deletions

View File

@ -13,12 +13,14 @@ eleventyComputed:
{{ content | safe }}
</div>
{% if post.tags | length %}
<ul role="list">
<section>
<h2>Tags:</h2>
<ul role="list">
{% for tag in post.tags %}
<li><a href="/post/tag/{{ tag.slug }}" rel="tag">#{{ tag.name }}</a></li>
{% endfor %}
</ul>
</section>
{% endif %}
</article>

View File

@ -0,0 +1,6 @@
.token.cdata,
.token.comment,
.token.doctype,
.token.prolog {
color: #999;
}